Steps to switch VS Code to the Chinese interface: 1. Open the settings page (File>Preferences>Settings); 2. Search and select the "locale" setting; 3. In the "Language" drop-down menu Select the Chinese interface; 4. Restart VS Code.
How to switch to Chinese interface in VS Code
Operation steps:
-
Open the VS Code settings page: Click "File" > "Preferences" > "Settings" on the menu bar, or use the shortcut key
Ctrl
,
.
-
Search for "locale" settings: Enter "locale" in the search box in the upper left corner, and then click the "Search" button.
-
Select Chinese interface: In the "Language" drop-down menu, select "Simplified Chinese (China)" or "Traditional Chinese (Taiwan)".
-
Restart VS Code: After changing settings, you need to restart VS Code to apply the changes.
Detailed description:
-
Settings page: This is the place to customize various options and settings of VS Code. Includes language settings.
-
locale setting: This setting specifies the interface language that VS Code should use.
-
Language drop-down menu: This menu lists all supported interface languages, including Chinese.
-
Restart VS Code: After changing settings, you must restart VS Code to activate the new settings.
Tip:
- If the "locale" setting is not found, you can add it manually: In the settings.json file, add the following code :
<code class="json">"locale": "zh-CN"</code>
Copy after login
- You can also use language extensions to change the VS Code interface language, such as [Chinese (Simplified) for Visual Studio Code](https://marketplace.visualstudio.com/items? itemName=aaron-bond.vscode-language-pack-zh-cn).
The above is the detailed content of How to make vscode into Chinese. For more information, please follow other related articles on the PHP Chinese website!