1
0
mirror of https://github.com/kkapsner/CanvasBlocker synced 2024-05-29 09:28:06 +02:00
CanvasBlocker/.tools/checkMissingTranslation.js
2018-09-12 22:54:25 +02:00

15 lines
351 B
JavaScript

const en = require("../_locales/en/messages.json");
const enKeys = Object.keys(en);
const language = process.argv[2];
const la = require("../_locales/" + language + "/messages.json");
const laKeys = Object.keys(la);
enKeys.forEach(function(key){
if (en[key].message){
if (!la[key] || !la[key].message){
console.log(key, "missing");
}
}
});