133 lines
5.0 KiB
JavaScript
133 lines
5.0 KiB
JavaScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
'use strict';
|
|
|
|
let i18n = require("../lib/i18n");
|
|
|
|
let fs = require("fs");
|
|
let path = require("path");
|
|
|
|
let gulp = require('gulp');
|
|
let vfs = require("vinyl-fs");
|
|
let rimraf = require('rimraf');
|
|
let minimist = require('minimist');
|
|
|
|
function update(options) {
|
|
let idOrPath = options._;
|
|
if (!idOrPath) {
|
|
throw new Error('Argument must be the location of the localization extension.');
|
|
}
|
|
let transifex = options.transifex;
|
|
let location = options.location;
|
|
if (transifex === true && location !== undefined) {
|
|
throw new Error('Either --transifex or --location can be specified, but not both.');
|
|
}
|
|
if (!transifex && !location) {
|
|
transifex = true;
|
|
}
|
|
if (location !== undefined && !fs.existsSync(location)) {
|
|
throw new Error(`${location} doesn't exist.`);
|
|
}
|
|
let locExtFolder = idOrPath;
|
|
if (/^\w{2}(-\w+)?$/.test(idOrPath)) {
|
|
locExtFolder = path.join('..', 'vscode-loc', 'i18n', `vscode-language-pack-${idOrPath}`);
|
|
}
|
|
let locExtStat = fs.statSync(locExtFolder);
|
|
if (!locExtStat || !locExtStat.isDirectory) {
|
|
throw new Error('No directory found at ' + idOrPath);
|
|
}
|
|
let packageJSON = JSON.parse(fs.readFileSync(path.join(locExtFolder, 'package.json')).toString());
|
|
let contributes = packageJSON['contributes'];
|
|
if (!contributes) {
|
|
throw new Error('The extension must define a "localizations" contribution in the "package.json"');
|
|
}
|
|
let localizations = contributes['localizations'];
|
|
if (!localizations) {
|
|
throw new Error('The extension must define a "localizations" contribution of type array in the "package.json"');
|
|
}
|
|
|
|
localizations.forEach(function (localization) {
|
|
if (!localization.languageId || !localization.languageName || !localization.localizedLanguageName) {
|
|
throw new Error('Each localization contribution must define "languageId", "languageName" and "localizedLanguageName" properties.');
|
|
}
|
|
let server = localization.server || 'www.transifex.com';
|
|
let userName = localization.userName || 'api';
|
|
let apiToken = process.env.TRANSIFEX_API_TOKEN;
|
|
let languageId = localization.transifexId || localization.languageId;
|
|
let translationDataFolder = path.join(locExtFolder, 'translations');
|
|
if (languageId === "zh-cn") {
|
|
languageId = "zh-hans";
|
|
}
|
|
if (languageId === "zh-tw") {
|
|
languageId = "zh-hant";
|
|
}
|
|
if (fs.existsSync(translationDataFolder) && fs.existsSync(path.join(translationDataFolder, 'main.i18n.json'))) {
|
|
console.log('Clearing \'' + translationDataFolder + '\'...');
|
|
rimraf.sync(translationDataFolder);
|
|
}
|
|
|
|
if (transifex) {
|
|
console.log(`Downloading translations for ${languageId} to '${translationDataFolder}' ...`);
|
|
let translationPaths = [];
|
|
i18n.pullI18nPackFiles(server, userName, apiToken, { id: languageId }, translationPaths)
|
|
.on('error', (error) => {
|
|
console.log(`Error occurred while importing translations:`);
|
|
translationPaths = undefined;
|
|
if (Array.isArray(error)) {
|
|
error.forEach(console.log);
|
|
} else if (error) {
|
|
console.log(error);
|
|
} else {
|
|
console.log('Unknown error');
|
|
}
|
|
})
|
|
.pipe(vfs.dest(translationDataFolder))
|
|
.on('end', function () {
|
|
if (translationPaths !== undefined) {
|
|
localization.translations = [];
|
|
for (let tp of translationPaths) {
|
|
localization.translations.push({ id: tp.id, path: `./translations/${tp.resourceName}`});
|
|
}
|
|
fs.writeFileSync(path.join(locExtFolder, 'package.json'), JSON.stringify(packageJSON, null, '\t'));
|
|
}
|
|
});
|
|
} else {
|
|
console.log(`Importing translations for ${languageId} form '${location}' to '${translationDataFolder}' ...`);
|
|
let translationPaths = [];
|
|
gulp.src(path.join(location, languageId, '**', '*.xlf'))
|
|
.pipe(i18n.prepareI18nPackFiles(i18n.externalExtensionsWithTranslations, translationPaths, languageId === 'ps'))
|
|
.on('error', (error) => {
|
|
console.log(`Error occurred while importing translations:`);
|
|
translationPaths = undefined;
|
|
if (Array.isArray(error)) {
|
|
error.forEach(console.log);
|
|
} else if (error) {
|
|
console.log(error);
|
|
} else {
|
|
console.log('Unknown error');
|
|
}
|
|
})
|
|
.pipe(vfs.dest(translationDataFolder))
|
|
.on('end', function () {
|
|
if (translationPaths !== undefined) {
|
|
localization.translations = [];
|
|
for (let tp of translationPaths) {
|
|
localization.translations.push({ id: tp.id, path: `./translations/${tp.resourceName}`});
|
|
}
|
|
fs.writeFileSync(path.join(locExtFolder, 'package.json'), JSON.stringify(packageJSON, null, '\t'));
|
|
}
|
|
});
|
|
}
|
|
});
|
|
}
|
|
if (path.basename(process.argv[1]) === 'update-localization-extension.js') {
|
|
var options = minimist(process.argv.slice(2), {
|
|
boolean: 'transifex',
|
|
string: 'location'
|
|
});
|
|
update(options);
|
|
}
|