With VCL you can use CreateMessageDialog to generate a message dialog with custom button captions.
With FMX CreateMessageDialog does not seem to exist anymore (since XE3).
Is there a way to customize the button captions with FireMonkey other than rebuilding the message dialog from scratch?
What I would like to be able is to call a function as described here:
MessageDlg(
‘Really quit application ?’, mtWarning,
[ButtonInfo(mbNo, ‘Do&n”t save’),
ButtonInfo(mbCancel, ‘&Cancel’),
ButtonInfo(mbYes,’&Save’)],
mbYes
);