#vscode is an open source cross-platform editor. By default, the language used by vscode is English (us). How to change its display language to Chinese?
1. Open the vscode tool, search Chinese (Simplied) Lang in the store, and install it;
2. Use the shortcut key combination [Ctrl Shift p], enter "configure display language" in the search box, and click OK;
3. Modify the attribute "locale" under the locale.json file to "zh- CN”;
{ // Defines VS Code's display language. // See https://go.microsoft.com/fwlink/?LinkId=761051 for a list of supported languages. "locale":"zh-CN" // Changes will not take effect until VS Code has been restarted. }
4. Restart the vscode tool.
Recommended study: "vscode tutorial"
The above is the detailed content of How to change vscode into Chinese. For more information, please follow other related articles on the PHP Chinese website!