diff --git a/build/gulpfile.editor.js b/build/gulpfile.editor.js index 1136430dd99..5d8d47677a6 100644 --- a/build/gulpfile.editor.js +++ b/build/gulpfile.editor.js @@ -75,7 +75,7 @@ const compileEditorESMTask = task.define('compile-editor-esm', () => { .pipe(i18n.processNlsFiles({ out, fileHeader: BUNDLED_FILE_HEADER, - languages: i18n.defaultLanguages, + languages: [...i18n.defaultLanguages, ...i18n.extraLanguages], })) .pipe(filter(['**', '!**/inlineEntryPoint*', '!**/tsconfig.json', '!**/loader.js'])) .pipe(gulp.dest(out)) diff --git a/build/lib/i18n.js b/build/lib/i18n.js index a2d7e8720fd..e0dafe44aaf 100644 --- a/build/lib/i18n.js +++ b/build/lib/i18n.js @@ -41,11 +41,12 @@ exports.defaultLanguages = [ { id: 'ru', folderName: 'rus' }, { id: 'it', folderName: 'ita' } ]; -// languages requested by the community to non-stable builds +// languages requested by the community exports.extraLanguages = [ { id: 'pt-br', folderName: 'ptb' }, - { id: 'hu', folderName: 'hun' }, - { id: 'tr', folderName: 'trk' } + { id: 'tr', folderName: 'trk' }, + { id: 'cs' }, + { id: 'pl' } ]; var LocalizeInfo; (function (LocalizeInfo) { diff --git a/build/lib/i18n.ts b/build/lib/i18n.ts index b4766f725b7..4506b2e3cd0 100644 --- a/build/lib/i18n.ts +++ b/build/lib/i18n.ts @@ -44,11 +44,12 @@ export const defaultLanguages: Language[] = [ { id: 'it', folderName: 'ita' } ]; -// languages requested by the community to non-stable builds +// languages requested by the community export const extraLanguages: Language[] = [ { id: 'pt-br', folderName: 'ptb' }, - { id: 'hu', folderName: 'hun' }, - { id: 'tr', folderName: 'trk' } + { id: 'tr', folderName: 'trk' }, + { id: 'cs' }, + { id: 'pl' } ]; interface Item {