提交 6bdcfaa5 编写于 作者: M Michel Kaporin

Added Hungarian and Turkish to Insiders. Resolves #28062 and #27608.

上级 441bfc3a
...@@ -86,7 +86,7 @@ const BUNDLED_FILE_HEADER = [ ...@@ -86,7 +86,7 @@ const BUNDLED_FILE_HEADER = [
var languages = ['chs', 'cht', 'jpn', 'kor', 'deu', 'fra', 'esn', 'rus', 'ita']; var languages = ['chs', 'cht', 'jpn', 'kor', 'deu', 'fra', 'esn', 'rus', 'ita'];
if (process.env.VSCODE_QUALITY !== 'stable') { if (process.env.VSCODE_QUALITY !== 'stable') {
languages = languages.concat(['ptb']); // Add languages requested by the community to non-stable builds languages = languages.concat(['ptb', 'hun', 'trk']); // Add languages requested by the community to non-stable builds
} }
gulp.task('clean-optimized-vscode', util.rimraf('out-vscode')); gulp.task('clean-optimized-vscode', util.rimraf('out-vscode'));
...@@ -369,7 +369,9 @@ const vscodeLanguages = [ ...@@ -369,7 +369,9 @@ const vscodeLanguages = [
'es', 'es',
'ru', 'ru',
'it', 'it',
'pt-br' 'pt-br',
'hu',
'tr'
]; ];
const setupDefaultLanguages = [ const setupDefaultLanguages = [
'zh-hans', 'zh-hans',
......
此差异已折叠。
...@@ -1032,7 +1032,9 @@ const encodings: Map<string> = { ...@@ -1032,7 +1032,9 @@ const encodings: Map<string> = {
'esn': 'CP1252', 'esn': 'CP1252',
'rus': 'CP1251', 'rus': 'CP1251',
'ita': 'CP1252', 'ita': 'CP1252',
'ptb': 'CP1252' 'ptb': 'CP1252',
'hun': 'CP1250',
'trk': 'CP1254'
}; };
function createIslFile(base: string, originalFilePath: string, messages: Map<string>, language: string): File { function createIslFile(base: string, originalFilePath: string, messages: Map<string>, language: string): File {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册