Reputation: 63912
How to change UI language in Visual Studio Code (1.0 released April 2016)?
Upvotes: 74
Views: 80782
Reputation: 16177
Upvotes: 0
Reputation: 15107
More info Here
Previous original answer (for older vscode):
Example: "locale":"en-US"
Upvotes: 140
Reputation: 529
As a Ubuntu user, the only option that seemed available to me was to start Visual Studio Code at the command line, explicitly specifying the language:
code --locale en
(The interface had been in French, due to the language I'd applied for my operating system. I'm trying to learn French, but having VSCode in French was a bit much, I still need to earn money writing software š)
https://code.visualstudio.com/docs/getstarted/locales
Upvotes: 0
Reputation: 2741
See "Display Language" https://code.visualstudio.com/docs/getstarted/locales
I had trouble with this and the answer from Eric Bole-Feysot did not help as it is missing an important step.
"locale": "en-US"
Hope that helps.
Upvotes: 26
Reputation: 31
Upvotes: 3
Reputation: 1
For mac OS user: At $home/Library/Application Support/Code/User, create a new file with name "locale.json" (it wasn't there for me), and type:
{
"locale": "en-US"
}
Worked for me. The latter part is the same to others' answer I guess, just there wasn't "locale.json" for me so I tried creating it myself, found it worked.
Upvotes: 0
Reputation: 553
For Windows user,
Go to following folder, C:\Users\UserName\AppData\Roaming\Code\User
Edit locale.json or create it, if not exist with following content
{
"locale":"en"
}
Supported locales can be found in the following links https://go.microsoft.com/fwlink/?LinkId=761051
Cheers
Upvotes: 4
Reputation: 1108
In Visual Studio Community for Mac 7.0 go to
Settings->Visual Style->User Interface Language
Upvotes: 0
Reputation: 104
Please refer to VSCode Display Language.
click: File->Preferences->Settings, User seting json file will open and add " "locale"="en" ", save the file and restart. Or you can use a command: >>> code . --locale=[lang] (lang refer to language code)
Press Ctrl+Shift+P to bring up the Command Palette then start typing "config" to filter and display the Configure Language command. Add " "locale"="en" " into the Jason file, save and restart
Upvotes: 2
Reputation: 45243
Since my Chinese (or whatever language this is in your screenshot) is pretty bad I describe how to set the display language to american English without using VSCode.
Open the file locale.json with a text editor (I suggest not to use VSCode).
On Windows the file is located under C:\Users\UserName\AppData\Roaming\Code\User
On Linux it's under $HOME/.config/Code/User
On a Mac it's under $HOME/Library/Application Support/Code/User
Change the file content to
{
"locale":"en-US"
}
Upvotes: 34