Search found 2386 matches

by isiticov
Fri Jun 20, 2003 7:17 am
Forum: TsiLang Components Suite
Topic: Global Update for siLang1... How?
Replies: 1
Views: 9363

See in TsiLang Expert's menu "Tools|Replace Phrase..."
by isiticov
Mon Jun 16, 2003 7:14 pm
Forum: TsiLang Components Suite
Topic: Loading SIB file into Dispatcher does not work
Replies: 5
Views: 16155

Sorry, it should be used the following:

Code: Select all

siLangDispatcher1.LangNames := siLang1.LangNames;
then it would work.
by isiticov
Sat Jun 14, 2003 6:59 am
Forum: TsiLang Components Suite
Topic: Loading SIB file into Dispatcher does not work
Replies: 5
Views: 16155

When loading from SIB file the dispatcher languages are not updated, but when loading from SIL file they do automatically. So it works, and in order to update the dispatcher's languages you can just use something like following:

Code: Select all

siLangDispatcher1.LangNames.Assign(siLang1.LangNames);
by isiticov
Thu Jun 12, 2003 8:32 am
Forum: TsiLang Components Suite
Topic: Swap Language Column in silEditor
Replies: 1
Views: 9185

Yes, it is possible. See in menu Tools|Swap Languages
by isiticov
Wed Jun 11, 2003 1:58 pm
Forum: TsiLang Components Suite
Topic: Cannot translate Caption on TToolButton
Replies: 1
Views: 9427

If you have associated action to toolbutton then the caption of button should be translated by translating the appropriate action. This is the recommended by Borland way to go. In case you need to use different captions for toolbutton and action you may just clear action property of toolbutton and y...
by isiticov
Wed Jun 04, 2003 8:12 pm
Forum: TsiLang Components Suite
Topic: Dynamically created forms
Replies: 2
Views: 10884

You can use .SIB files to store your translations and set the FileName property of dispatcher component. Then all TsiLang components will load the translations from this file when link to dispatcher. Also when using SIB file its content is loaded into memory and is held there for faster access in th...
by isiticov
Mon Jun 02, 2003 1:51 pm
Forum: TsiLang Components Suite
Topic: TsiLang and QuickReport/FastReport
Replies: 3
Views: 14290

I suppose not.
by isiticov
Mon Jun 02, 2003 9:56 am
Forum: TsiLang Components Suite
Topic: TsiLang and QuickReport/FastReport
Replies: 3
Views: 14290

Yes, just place TsiLang component on report and you will be able to translate it.
by isiticov
Fri May 16, 2003 2:35 pm
Forum: TsiLang Components Suite
Topic: TsiLang and GetText procedure
Replies: 10
Views: 28404

Could you please send us the sample project which reproduces such behavior? And we will try to find where exactly the origin of problem is.
Thanks.
by isiticov
Tue May 13, 2003 10:18 am
Forum: TsiLang Components Suite
Topic: SIL File Editor and Save As .SIB
Replies: 4
Views: 17041

We will try to implement this in next release.
by isiticov
Mon May 12, 2003 10:56 am
Forum: TsiLang Components Suite
Topic: SiLangLinked and Frames
Replies: 4
Views: 15132

Then I would suggest you something like following: 1. Add some string to TsiLang on frame which will hold the translations of frame's hint 2. When creating frame at run-time use smth like: with TFrame2.Create(Self) do Hint := siLangLinked1.GetTextOrDefault('IDS_HINT'); Then your dinamically created ...
by isiticov
Sat May 10, 2003 4:36 am
Forum: TsiLang Components Suite
Topic: TActionManager & TActionMainMenuBar
Replies: 9
Views: 24517

The strings from this popup menu ar placed in resource strings of project. So you can translate them by importing them from executable and setting the HandleResourceStrings property to True.
by isiticov
Fri May 09, 2003 5:55 pm
Forum: TsiLang Components Suite
Topic: SiLangLinked and Frames
Replies: 4
Views: 15132

1. You can translate the hint of frame using TsiLang component placed on the form where the frame would be embedded. After placing frame on that form its hint will appear in Hints property of TsiLang placed on same form. 2. Because this is how Delphi works and this is not TsiLang issue. You would se...
by isiticov
Fri May 09, 2003 11:57 am
Forum: TsiLang Components Suite
Topic: TActionManager & TActionMainMenuBar
Replies: 9
Views: 24517

lenif7780 wrote:I use the filname property of the actionmanager to store the layout and maybe the problem come from there ?

This could be the origin of problem.
by isiticov
Fri May 09, 2003 8:57 am
Forum: TsiLang Components Suite
Topic: TActionManager & TActionMainMenuBar
Replies: 9
Views: 24517

Have you assigned and translated the action for each top-level item?