-
Notifications
You must be signed in to change notification settings - Fork 7.4k
/
translations.js
54 lines (43 loc) · 1.82 KB
/
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
53
54
/* eslint-disable no-console */
const fs = require('fs');
const path = require('path');
const sh = require('shelljs');
const source = require('../lang/en.json');
const table = require('markdown-table');
const tableRegex = /(<!-- START langtable -->)(.|\n)*(<!-- END langtable -->)/;
let doc = fs.readFileSync(path.join(__dirname, '..', 'docs', 'translations-needed.md'), 'utf8');
const tableData = [['Language file', 'Missing translations']];
const filepaths = sh.find(path.join(__dirname, '..', 'lang', '**', '!(zh-Hans|zh-Hant)*.json'));
filepaths.forEach((filepath) => {
const filename = path.basename(filepath);
if (filename === 'en.json') {
return;
}
const target = require(filepath);
// Special case for English, the assumption being that since the keys are English only
// a few strings need to be altered for regional differences, e.g. en-GB.
if (filename.startsWith('en-')) {
console.log(`${filename} English - should be manually checked.`);
tableData.push([`${filename} (has ${Object.keys(target).length})`, 'Needs manual checking. Can safely use most default strings.']);
return;
}
const missing = [];
for (const string in source) {
if (!target[string]) {
console.log(`${filename} missing "${string}"`);
missing.push(string);
}
}
if (missing.length > 0) {
console.error(`${filename} is missing ${missing.length} translations.`);
tableData.push([`${filename} (missing ${missing.length})`, missing[0]]);
for (let i = 1; i < missing.length; i++) {
tableData.push(['', missing[i]]);
}
} else {
console.log(`${filename} is up to date.`);
tableData.push([`${filename} (Complete)`, '']);
}
});
doc = doc.replace(tableRegex, '$1\n' + table(tableData) + '\n$3');
fs.writeFileSync(path.join(__dirname, '..', 'docs', 'translations-needed.md'), doc, 'utf8');