mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-29 13:36:27 -05:00
Fixes --locale switch incorrect for Simplified Chinese, should be zh-cn not zh-ch
This commit is contained in:
@@ -52,7 +52,7 @@ var vscodeLanguages = [
|
||||
'ita'
|
||||
];
|
||||
var iso639_3_to_2 = {
|
||||
'chs': 'zh-ch',
|
||||
'chs': 'zh-cn',
|
||||
'cht': 'zh-tw',
|
||||
'csy': 'cs-cz',
|
||||
'deu': 'de',
|
||||
|
||||
@@ -69,7 +69,7 @@ const vscodeLanguages: string[] = [
|
||||
];
|
||||
|
||||
const iso639_3_to_2: Map<string> = {
|
||||
'chs': 'zh-ch',
|
||||
'chs': 'zh-cn',
|
||||
'cht': 'zh-tw',
|
||||
'csy': 'cs-cz',
|
||||
'deu': 'de',
|
||||
|
||||
Reference in New Issue
Block a user