Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to set eclipse console locale/language

Tags:

java

eclipse

When developing web application with Eclipse (Helios) the tomcat output is being sent to the console. Ok, but the messages are being translated to my OS language.

In fact, my Eclipse is in English, but the Tomcat output (logging) is being translated to Portuguese. Probably it's a Tomcat configuration issue, but I can't find where...

How do I change this behaviour? I want my entire Eclipse in English, including Tomcat.

like image 497
Bob Rivers Avatar asked Feb 09 '11 16:02

Bob Rivers


1 Answers

Go to Window > Preferences > Java > Installed JREs > select preferred JRE > Edit and then add the following to Default VM arguments:

-Duser.language=en -Duser.country=US

enter image description here

like image 131
BalusC Avatar answered Sep 30 '22 17:09

BalusC