rtalmeida Posted April 23, 2017 Posted April 23, 2017 How do I translate message header?Note in the picture the word Warning Quote
Sherzod Posted April 23, 2017 Posted April 23, 2017 Hi, Can you try this approach for now?!: http://forums.unigui.com/index.php?/topic/8106-prompt-pencere-basligi-degistirme/&do=findComment&comment=41435 Best regards, Quote
Ron Posted April 24, 2017 Posted April 24, 2017 This is what I use, of course in my language - Norwegian: unit MainModule; interface ... const SNewMsgDlgWarning: PChar = 'Advarsel'; SNewMsgDlgError: PChar = 'Feil'; SNewMsgDlgInformation: PChar = 'Informasjon'; SNewMsgDlgConfirm: PChar = 'Vennligst Bekreft'; SNewMsgDlgYes: PChar = 'Ja'; SNewMsgDlgNo: PChar = 'Nei'; SNewMsgDlgOK: PChar = 'OK'; SNewMsgDlgCancel: PChar = 'Avbryt'; SNewDeleteRecordQuestion: PChar = 'Slett Post?'; SNewDeleteRecord: PChar = 'Slett Post?'; ... initialization RegisterMainModuleClass(TUniMainModule); SetResourceString(@SMsgDlgConfirm, SNewMsgDlgConfirm); SetResourceString(@SMsgDlgWarning, SNewMsgDlgWarning); SetResourceString(@SMsgDlgError, SNewMsgDlgError); SetResourceString(@SMsgDlgInformation, SNewMsgDlgInformation); SetResourceString(@SMsgDlgYes, SNewMsgDlgYes); SetResourceString(@SMsgDlgNo, SNewMsgDlgNo); SetResourceString(@SMsgDlgOK, SNewMsgDlgOK); SetResourceString(@SMsgDlgCancel, SNewMsgDlgCancel); SetResourceString(@SDeleteRecordQuestion, SNewDeleteRecordQuestion); SetResourceString(@SDeleteRecord, SNewDeleteRecord); end. 1 Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.