fix incorrect uppercase chinese language codes
This commit is contained in:
Родитель
c24deb2797
Коммит
44229c19eb
|
@ -10,6 +10,7 @@ Bug Fixes:
|
||||||
|
|
||||||
- Fix issue where simply clicking on tree item was opening launch target selection. [#588](https://github.com/microsoft/vscode-makefile-tools/issues/588)
|
- Fix issue where simply clicking on tree item was opening launch target selection. [#588](https://github.com/microsoft/vscode-makefile-tools/issues/588)
|
||||||
- Fix issue where selecting "Default" from the configuration drop down doesn't update Makefile Project Outline [#585](https://github.com/microsoft/vscode-makefile-tools/issues/585)
|
- Fix issue where selecting "Default" from the configuration drop down doesn't update Makefile Project Outline [#585](https://github.com/microsoft/vscode-makefile-tools/issues/585)
|
||||||
|
- Fix issue where CHS and CHT wasn't being localized on Linux. [#609](https://github.com/microsoft/vscode-makefile-tools/issues/609)
|
||||||
|
|
||||||
## 0.9
|
## 0.9
|
||||||
|
|
||||||
|
|
|
@ -24,8 +24,8 @@ const jsonc = require("jsonc-parser");
|
||||||
const jsonSchemaFilesPatterns = ["*/*-schema.json"];
|
const jsonSchemaFilesPatterns = ["*/*-schema.json"];
|
||||||
|
|
||||||
const languages = [
|
const languages = [
|
||||||
{ id: "zh-TW", folderName: "cht", transifexId: "zh-hant" },
|
{ id: "zh-tw", folderName: "cht", transifexId: "zh-hant" },
|
||||||
{ id: "zh-CN", folderName: "chs", transifexId: "zh-hans" },
|
{ id: "zh-cn", folderName: "chs", transifexId: "zh-hans" },
|
||||||
{ id: "fr", folderName: "fra" },
|
{ id: "fr", folderName: "fra" },
|
||||||
{ id: "de", folderName: "deu" },
|
{ id: "de", folderName: "deu" },
|
||||||
{ id: "it", folderName: "ita" },
|
{ id: "it", folderName: "ita" },
|
||||||
|
|
Загрузка…
Ссылка в новой задаче