Search found 2387 matches

by isiticov
Wed Sep 10, 2003 12:44 pm
Forum: TsiLang Components Suite
Topic: Problems with loading from SIB files
Replies: 2
Views: 11078

Yes, it looks like your installation of latest version wasn't correct. Please delete ALL DCU (and OBJ HPP in case C++Builder usage) from TsiLang units folder and re-build your project.
by isiticov
Sat Sep 06, 2003 10:52 am
Forum: Resource Builder
Topic: Link to exe fail
Replies: 12
Views: 34484

We've just released new update for Resource Builder which includes the fix for this bug. Please update your version either by using Update Manager or by downloading complete package from our site.
by isiticov
Fri Sep 05, 2003 8:37 am
Forum: Resource Builder
Topic: String elements are grouped on 16 items
Replies: 3
Views: 11549

Unfortynately, this is not possible.
by isiticov
Fri Sep 05, 2003 7:35 am
Forum: Resource Builder
Topic: String elements are grouped on 16 items
Replies: 3
Views: 11549

String resources are grouped by 16 items because this is the way how they are stored in resource format. In resources each strings table holds 16 items.
by isiticov
Thu Aug 28, 2003 8:25 am
Forum: TsiLang Components Suite
Topic: SiComponents and Skins
Replies: 1
Views: 10901

As requested answered by email.
The main idea of answer is to use the resource strings translation functionality of TsiLang Components Suite.
by isiticov
Wed Aug 20, 2003 7:33 am
Forum: TsiLang Components Suite
Topic: Translation of Shortcuts in Menus
Replies: 7
Views: 43863

Below is example code from C++ Builder to perform discussed task: AnsiString __fastcall SiShortCutToText(TShortCut ShortCut) { AnsiString res = "AAA"; return (res); } void OverwriteProcedure(Pointer OldProcedure, Pointer NewProcedure) { PChar x; int y; unsigned long ov2, ov; x = PChar(OldP...
by isiticov
Sun Aug 17, 2003 6:45 am
Forum: TsiLang Components Suite
Topic: CodeKey is read-only
Replies: 2
Views: 12991

This looks like some of components on your form has property CodeKey with no change allowed. You can just find this property (CodeKey) to ExcludedProperties property of TsiLang and then this property won't be translated.
by isiticov
Wed Aug 13, 2003 11:04 am
Forum: TsiLang Components Suite
Topic: Translation of Shortcuts in Menus
Replies: 7
Views: 43863

The answer was how to translate the shortcuts using TsiLang Components Suite. In order to translate them without using TsiLang Components Suite I can suggest the following way: 1. Delphi/C++Builder show shortcuts in menu after converting the shortcut value (word) to text prezentation. 2. This is don...
by isiticov
Mon Aug 11, 2003 9:45 am
Forum: TsiLang Components Suite
Topic: Problem with option "Evaluate Boolean Expressions Compl
Replies: 3
Views: 12627

Yes, TsiLang really needs such conditions and we will fix this minor bug in next version by inserting necessary compiler switches directly to source in order to prevent such situations as yours.
by isiticov
Mon Aug 11, 2003 8:02 am
Forum: TsiLang Components Suite
Topic: Problem with option "Evaluate Boolean Expressions Compl
Replies: 3
Views: 12627

In case you have registered sources version I would recommend you to open SI.INC file and add the following lines at the end:

Code: Select all

{$J+}
{$R-}
{$B-}
and rebuild your project.
by isiticov
Thu Aug 07, 2003 1:30 pm
Forum: TsiLang Components Suite
Topic: Translation of Shortcuts in Menus
Replies: 7
Views: 43863

In SiComp.pas unit there is procedure called: procedure OverwriteProcedure(OldProcedure, NewProcedure: Pointer); Just copy it into your code and use the following example code which allows translation menu shortcuts: function SiShortCutToText(ShortCut: TShortCut): string; implementation {$R *.dfm} f...
by isiticov
Thu Aug 07, 2003 8:26 am
Forum: TsiLang Components Suite
Topic: Translation of Shortcuts in Menus
Replies: 7
Views: 43863

Unfortunately, Borland didn't make these strings (shortcut names) used as resource strings when translating shortcut values to string representation in menus unit. So this is possible only by altering code in standard Menus.Pas unit and translating resource strings responsible for shortcut names usi...
by isiticov
Wed Aug 06, 2003 10:45 am
Forum: TsiLang Components Suite
Topic: Dictionary manager & SIL files
Replies: 3
Views: 12861

Btw, the same actions are also available directly from Translation Editor under IDE.
by isiticov
Wed Aug 06, 2003 9:44 am
Forum: TsiLang Components Suite
Topic: Dictionary manager & SIL files
Replies: 3
Views: 12861

Just open SIL file into SIL Editor and select in its menu "Tools|Dictionary|Add all" this will add all your currently selected translations to Dictionary Manager. So in this way you will be able to import all your translations from SIL file into dictionary manager.
by isiticov
Sat Jun 21, 2003 6:19 am
Forum: TsiLang Components Suite
Topic: Check this
Replies: 1
Views: 9478

Sorry for that dialog. This was just a debug assertion which should be removed. In order to replace translation in multiple forms at once just select all forms where replacement should be made in TsiLang Expert's window and click Tools|ReplacePhrase. Then it will replace your phrase in all selected ...