I am working in an English app on a german laptop, over a spanish OS.
Even if I explictly set Locale.setDefault(Locale.ENGLISH) at the beggining of my app, I am seeing the hotkexs in the menu as
CTRL + Mayúsculas + C
instead of
CTRL + SHIFT + C
that I passed to the KeyStroke object.
Is not only that word does not get localized to english as I specified, but also that it maps SHIFT key to MAYUS (CAPS LOCK in english), so I guess this is not only a language issue, but keymap´s as well.
So how can I impose english for all the GUI components?
Thank you!