Issue
When I add
default_options="--branding ersyp -J-Xms24m -J-Xmx64m J-Duser.language=tr-J-Duser.region=TR"
code to my appName.conf
file the NetBeans platform application language should be Turkish but when I run my application from NetBeans this file gets overwritten.
How can I prevent that from happening?
Solution
Add
run.args.extra=--locale tr
in the project.properties
file of your Netbeans application (this file is in the Important Files
folder of your project's module suite).
Answered By - jjazzboss