How to Change the Language of Netbeans IDE On Mac?

Asked

Viewed 1,142 times

1

Good night,

Can you help me change the language in netbeans IDE 8.2 ? my operating system is in Portuguese but since the first version of netbeans was installed in English I think it may have influenced the currently installed Portuguese version, can I change it manually? by the menus do not meet

  • The answer somehow met you? Need some more information to accept it?

2 answers

1


Navigate to the Netbeans installation directory:

C:\Program Files\NetBeans 8\etc

Opens the file netbeans.conf and look for the line with the key netbeans_default_options:

netbeans_default_options="-J-client -J-Xss2m -J-Xms32m -J-XX:PermSize=32m -J-XX:MaxPermSize=200m -J-Xverify:none -J-Dapple.laf.useScreenMenuBar=true"

Add the following at the end of the line:

"-J-Duser.language=en -J-Duser.region=US"

Restart the Netbeans IDE!

  • Oh my dear, Murillo Goulart says he wants on the Mac sorry.

  • @I yearn only the path that must change at first, but the configuration is the same!

  • I just thought about it, I’m looking for the file

  • I couldn’t find the file, I’m reinstalling the OS.

1

Change language to English on mac:

  1. open the terminal and access the directory /Applications/Netbeans/Netbeans 8.2.app/Contents/Resources/Netbeans/etc
  2. typhoon sudo vim netbeans.conf (this opens the netbeans.conf file in admin mode)
  3. find the line started with netbeans_default_options
  4. at the end of this line, before the " add -J-Duser.language=en -J-Duser.Region=US
  5. save the file and re-upload the netbeans.

In my case, this line went like this:

netbeans_default_options="-J-client -J-Xss2m -J-Xms32m -J-Dapple.laf.useScreenMenuBar=true -J-Dapple.awt.graphics.UseQuartz=true -J-Dsun.java2d.noddraw=true -J-Dsun.java2d.dpiaware=true -J-Dsun.zip.disableMemoryMapping=true -J-Duser.language=en -J-Duser.region=US"

OBS: my netbeans is version 8.2. If you have another installed, just adjust the path to the folder /etc.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.