-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathload-translations.js
52 lines (52 loc) · 2.76 KB
/
load-translations.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
const crypto_1 = require("crypto");
const fs = require("fs");
async function createTranslationLoader() {
const { parsers, diagnostics } = await importParsers();
return (path) => {
const content = fs.readFileSync(path, 'utf8');
for (const [format, parser] of Object.entries(parsers)) {
if (parser.canParse(path, content)) {
const result = parser.parse(path, content);
const integrity = 'sha256-' + crypto_1.createHash('sha256').update(content).digest('base64');
return { format, translation: result.translations, diagnostics, integrity };
}
}
throw new Error('Unsupported translation file format.');
};
}
exports.createTranslationLoader = createTranslationLoader;
async function importParsers() {
try {
// tslint:disable-next-line: no-implicit-dependencies
const localizeDiag = await Promise.resolve().then(() => require('@angular/localize/src/tools/src/diagnostics'));
const diagnostics = new localizeDiag.Diagnostics();
const parsers = {
json: new (await Promise.resolve().then(() => require(
// tslint:disable-next-line:trailing-comma no-implicit-dependencies
'@angular/localize/src/tools/src/translate/translation_files/translation_parsers/simple_json_translation_parser'))).SimpleJsonTranslationParser(),
xlf: new (await Promise.resolve().then(() => require(
// tslint:disable-next-line:trailing-comma no-implicit-dependencies
'@angular/localize/src/tools/src/translate/translation_files/translation_parsers/xliff1_translation_parser'))).Xliff1TranslationParser(),
xlf2: new (await Promise.resolve().then(() => require(
// tslint:disable-next-line:trailing-comma no-implicit-dependencies
'@angular/localize/src/tools/src/translate/translation_files/translation_parsers/xliff2_translation_parser'))).Xliff2TranslationParser(),
// The name ('xmb') needs to match the AOT compiler option
xmb: new (await Promise.resolve().then(() => require(
// tslint:disable-next-line:trailing-comma no-implicit-dependencies
'@angular/localize/src/tools/src/translate/translation_files/translation_parsers/xtb_translation_parser'))).XtbTranslationParser(),
};
return { parsers, diagnostics };
}
catch (_a) {
throw new Error(`Unable to load translation file parsers. Please ensure '@angular/localize' is installed.`);
}
}