I was wondering is it possible to change the OK Cancel Button to custom string in java? I have
JOptionPane.showConfirmDialog(message, title, JOptionPane.OK_CANCEL_OPTION);
Right now, the button will show "OK" and "Cancel". Is it possible to change the text for that? for example into "A" and "B" or maybe japanese text?
Thank you