Hi
I have changed an inputquery to a silang1.inputquery as instructed in the manual.
But the OK and Cancel that need translation doesn't appear in the translation editor.
Any idea how this can go wrong?
silang1.inputquery no translations appears
-
- Posts: 27
- Joined: Wed Jan 15, 2003 4:09 pm
- Location: Denmark
- Contact:
silang1.inputquery no translations appears
----------------------------------------------
Lars Rikart Jensen
PCzapper
Lars Rikart Jensen
PCzapper
-
- Posts: 27
- Joined: Wed Jan 15, 2003 4:09 pm
- Location: Denmark
- Contact:
-
- Posts: 27
- Joined: Wed Jan 15, 2003 4:09 pm
- Location: Denmark
- Contact:
here is a testproject in D7
http://www.palmbutler.com/testing/translationtest.zip
problem is the same in a new project...
http://www.palmbutler.com/testing/translationtest.zip
problem is the same in a new project...
----------------------------------------------
Lars Rikart Jensen
PCzapper
Lars Rikart Jensen
PCzapper
Thanks, this is strange but there was a bug 
It will be fixed in next release. In case you need to fix it now, you can make small changes in siComp.pas file:
replace lines:
with lines:
respectively.
Thank you again.

It will be fixed in next release. In case you need to fix it now, you can make small changes in siComp.pas file:
replace lines:
Code: Select all
Caption := SMsgDlgOK;
---
Caption := SMsgDlgCancel;
Code: Select all
Caption := GetTextFrom(@FDlgsCaptions, 'OK', True);
---
Caption := GetTextFrom(@FDlgsCaptions, 'Cancel', True);
Thank you again.