VScode版本V1.54.1
VScode界面默認(rèn)的語言為英語,需要安裝簡體中文語言包,語言包為插件(Extension)。
安裝語言包
- 打開左側(cè)插件欄(
Extensions ),在搜索框中輸入chinese 。 - 選擇
Chinese(Simplified) 點擊右下角的install 按鈕。 - 安裝完畢后,自行重啟VScode,或者點擊右下角的提示的
restart 按鈕重啟VScode。 - 重啟后VScode界面語言已經(jīng)更改為簡體中文。
切換VScode界面的顯示語言
VScode支持安裝多個語言包,并提供切換已安裝語言包功能。
- 打開
顯示(View) 菜單,選擇命令面板(Command Palette) 菜單項或(Ctrl+Shift+P )快捷鍵 打開命令面板。 - 在命令面板中,輸入
Configure Display Language ,選擇Configure Display Language 命令,顯示已安裝的語言包列表。 - 在已安裝的語言包列表中選擇需要切換的語言包。
- 根據(jù)提示重啟VScode完成切換。
通過配置文件切換語言
Configure Display Language 命令其實修改的是運行時配置參數(shù)文件argv.json ,該文件位于用戶的 VS Code目錄中(即.vscode 目錄)。 通過命令面板輸入Preferences: Configure Runtime Arguments 命令可直接修改argv.json 文件。
將"locale" 項的值修改為需要切換的語言包名稱(必須已安裝)。
argv.json 文件內(nèi)容:
// This configuration file allows you to pass permanent command line arguments to VS Code.
// Only a subset of arguments is currently supported to reduce the likelyhood of breaking
// the installation.
//
// PLEASE DO NOT CHANGE WITHOUT UNDERSTANDING THE IMPACT
//
// NOTE: Changing this file requires a restart of VS Code.
{
// Use software rendering instead of hardware accelerated rendering.
// This can help in cases where you see rendering issues in VS Code.
// "disable-hardware-acceleration": true,
// Enabled by default by VS Code to resolve color issues in the renderer
// See https://github.com/Microsoft/vscode/issues/51791 for details
"disable-color-correct-rendering": true,
// Allows to disable crash reporting.
// Should restart the app if the value is changed.
"enable-crash-reporter": true,
// Unique id used for correlating crash reports sent from this instance.
// Do not edit this value.
"crash-reporter-id": "6bffdc62-784e-4400-828a-835113d7c56f",
"locale": "en"
}
區(qū)域語言對照表
Display Language | Locale |
---|
English (US) | en | Simplified Chinese | zh-CN | Traditional Chinese | zh-TW | French | fr | German | de | Italian | it | Spanish | es | Japanese | ja | Korean | ko | Russian | ru | Bulgarian | bg | Hungarian | hu | Portuguese (Brazil) | pt-br | Turkish | tr |
|