PhxMarco 1 Posted Sunday at 07:11 PM Hi, I need to change the values used by the dialogs, for language translation. These are in FMX.Consts: { Dialog Strings } SMsgDlgWarning = 'Warning'; SMsgDlgError = 'Error'; SMsgDlgInformation = 'Information'; SMsgDlgConfirm = 'Confirm'; SMsgDlgYes = 'Yes'; SMsgDlgNo = 'No'; .... but what is the right way to change them, at compile time, at runtime, and how ? Thanks for any help 1 Share this post Link to post
Dmitry Sh. 9 Posted yesterday at 06:29 AM At compile time. A simple way is to place the translated file FMX.Const.pas in your project folder or search path. 1 Share this post Link to post
PhxMarco 1 Posted yesterday at 07:25 AM ouch! you are right... I changed the file in the original path folder, but forgot that's not compiled with my project. Using a local copy of the file works fine. Thank you ! Share this post Link to post