PhxMarco 1 Posted May 25 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 May 28 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 May 28 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