I have a question regarding the JOptionPane.showInputDialog. The buttons I have are OK and Cancel, but I was wondering if it was possible to localize these to a particular Locale i will provide?
Thank you.
I have a question regarding the JOptionPane.showInputDialog. The buttons I have are OK and Cancel, but I was wondering if it was possible to localize these to a particular Locale i will provide?
Thank you.
Did you check the documentation? Or try your favourite search engine? This is quite easy when you know how:
JComponent.setDefaultLocale(Locale.GERMAN);
JOptionPane.showInputDialog("Guten Tag");
The above shows an input dialog with buttons labeled “OK” and “Abbrechen” (which I believe to be German usage, I am not an expert there, and in any case it is different from the “Cancel” label I get otherwise).