[SOLVED] JME 3.1 SDK interface language change

Could be that there was similar topic, but I couldn’t find it via search.

For those who don’t like the idea of localizing interfaces onto their native locale (such as me) - especially when nobody asked for that - this is how to switch SDK interface to english:

Go to
<installation folder>/etc/ (e.g. jmonkeyplatform/etc/) and open file jmonkeyplatform.conf

find line that starts with
default_options="..

and add following before last "
-J-Duser.language=en -J-Duser.region=US

you will end up having something like
default_options="--branding jmonkeyplatform -J-Xms24m …blah-blah-blah… …blah-blah-blah… -J-Dsun.java2d.noddraw=true -J-Duser.language=en -J-Duser.region=US"

after that run SDK normally.

p.s. I realize it is a NetBeans thing, not JME, so blame Oracle for this kind of “improvements” in development tools…