mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-20 02:08:47 +00:00
i18n: add missing localizations for monaco-editor (#268038)
Add missing localizations
This commit is contained in:
@@ -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))
|
||||
|
||||
@@ -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) {
|
||||
|
||||
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user