Mendix[5] generated pop-ups: Can the buttons have different captions?

0
In the Mendix 5.0.0 version of the project the error pop-ups have a pre-defined "Okay" caption for the bottom-side button. Is there any [simple] way of changing the text with something more formal?
asked
1 answers
0

It's not listed in the system texts, the dialog titles are, but not the button caption.

you could try adding css like below:

.mx-dialog-footer .btn:after { content: "Your text here"; }

answered