forked from estruyf/vscode-front-matter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsync-localization.js
183 lines (150 loc) · 5.21 KB
/
sync-localization.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
const fs = require('fs');
const path = require('path');
const glob = require('glob');
const { v4: uuidv4 } = require('uuid');
require('dotenv').config()
const transKey = process.env.TRANSLATION_API_KEY || "";
const apiUrl = process.env.TRANSLATION_API_URL || "";
const location = process.env.TRANSLATION_API_LOCATION || "";
const getTranslation = (translation) => {
let value = undefined;
if (translation && translation.translations && translation.translations.length > 0) {
value = translation.translations[0].text;
}
return value;
}
const callTranslationService = async (body, locale) => {
const response = await fetch(`${apiUrl}/translate?api-version=3.0&from=en&to=${locale}`, {
method: 'POST',
headers: {
'Ocp-Apim-Subscription-Key': transKey,
'Ocp-Apim-Subscription-Region': location,
'Content-type': 'application/json',
'Accept': 'application/json',
'X-ClientTraceId': uuidv4().toString(),
},
body
});
if (!response.ok) {
return undefined;
}
return await response.json();
}
(async () => {
// Get all the files from the l10n directory
const files = fs.readdirSync(path.join(__dirname, '../l10n'));
// Get the EN file
const enFile = fs.readFileSync(path.join(__dirname, '../l10n/bundle.l10n.json'), 'utf8');
const enContent = JSON.parse(enFile);
const enKeys = Object.keys(enContent);
console.log(`Starting l10n bundles`);
for (const file of files) {
if (file.endsWith(`bundle.l10n.json`)) {
continue;
}
// Get the file content
const fileContent = fs.readFileSync(path.join(__dirname, `../l10n/${file}`), 'utf8');
let content = {};
// Get the locale
const fileName = path.basename(file);
const fileSplit = fileName.split('.');
const locale = fileSplit[fileSplit.length - 2];
if (!locale) {
continue;
}
console.log(`- Processing: ${locale}`);
try {
content = JSON.parse(fileContent);
} catch (e) {
// Ignore the error
}
const keysToTranslate = [];
// Loop through the EN keys
for (const key of enKeys) {
// If the key does not exist in the file, add it
if (!content[key] || content[key].startsWith(`🚧: `)) {
keysToTranslate.push({
name: key,
value: enContent[key],
});
if (!apiUrl || !transKey || !location) {
content[key] = `${enContent[key]}`;
}
}
}
if (apiUrl && transKey && location) {
if (keysToTranslate.length > 0) {
console.log(` - Translating: ${keysToTranslate.length}`);
const body = JSON.stringify(keysToTranslate.map(key => ({ text: key.value })));
const data = await callTranslationService(body, locale);
for (let i = 0; i < keysToTranslate.length; i++) {
const keyToTranslate = keysToTranslate[i];
const translation = getTranslation(data[i]);
if (keyToTranslate.name && translation) {
content[keyToTranslate.name] = translation;
} else {
content[keyToTranslate.name] = `${keyToTranslate.value}`;
}
}
}
}
// Write the file
fs.writeFileSync(path.join(__dirname, `../l10n/${file}`), JSON.stringify(content, null, 2), 'utf8');
}
// Package JSON
const enPkgFile = fs.readFileSync(path.join(__dirname, '../package.nls.json'), 'utf8');
const enPkgContent = JSON.parse(enPkgFile);
const enPkgKeys = Object.keys(enPkgContent);
const pkgFiles = glob.sync(path.join(__dirname, '../package.nls.*.json'));
console.log(``);
console.log(`Starting nls bundles`);
for (const file of pkgFiles) {
const fileContent = fs.readFileSync(file, 'utf8');
let content = {};
// Get the locale
const fileName = path.basename(file);
const fileSplit = fileName.split('.');
const locale = fileSplit[fileSplit.length - 2];
if (!locale) {
continue;
}
console.log(`- Processing: ${locale}`);
try {
content = JSON.parse(fileContent);
} catch (e) {
// Ignore the error
}
const keysToTranslate = [];
// Loop through the EN keys
for (const key of enPkgKeys) {
const contentValue = content[key];
if (!contentValue || contentValue.startsWith(`🚧: `)) {
keysToTranslate.push({
name: key,
value: enPkgContent[key],
});
if (!apiUrl || !transKey || !location) {
content[key] = `🚧: ${enPkgContent[key]}`;
}
}
}
if (apiUrl && transKey && location) {
if (keysToTranslate.length > 0) {
console.log(` - Translating: ${keysToTranslate.length}`);
const body = JSON.stringify(keysToTranslate.map(key => ({ text: key.value })));
const data = await callTranslationService(body, locale);
for (let i = 0; i < keysToTranslate.length; i++) {
const keyToTranslate = keysToTranslate[i];
const translation = getTranslation(data[i]);
if (keyToTranslate.name && translation) {
content[keyToTranslate.name] = translation;
} else {
content[keyToTranslate.name] = `${keyToTranslate.value}`;
}
}
}
}
// Write the file
fs.writeFileSync(file, JSON.stringify(content, null, 2), 'utf8');
}
})();