summaryrefslogtreecommitdiffstats
path: root/ui/translation_report.ts
blob: 26994948e02f8f9537c4bcf5ae766c5725250039 (plain)
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
import { en } from './src/translations/en';
import { es } from './src/translations/es';
import { de } from './src/translations/de';
import { zh } from './src/translations/zh';
import { fr } from './src/translations/fr';
import { sv } from './src/translations/sv';
import { ru } from './src/translations/ru';

let files = [
  {t: de, n: 'de'}, 
  {t: es, n: 'es'}, 
  {t: fr, n: 'fr'}, 
  {t: ru, n: 'ru'}, 
  {t: sv, n: 'sv'}, 
  {t: zh, n: 'zh'}, 
];
let masterKeys = Object.keys(en.translation);

let report = 'lang | done | missing\n';
report += '--- | --- | ---\n';

for (let file of files) {
  let keys = Object.keys(file.t.translation);
  let pct: number = (keys.length / masterKeys.length * 100);
  let missing = difference(masterKeys, keys);
  report += `${file.n} | ${pct.toFixed(0)}% | ${missing} \n`;
}

console.log(report);

function difference(a: Array<string>, b: Array<string>): Array<string> {
  return a.filter(x => !b.includes(x));
}