lbry-desktop/ui/extractLocals.js
2017-06-12 21:18:20 +02:00

49 lines
1.3 KiB
JavaScript

var extract = require('i18n-extract');
const fs = require('fs');
var path = '../app/dist/locales/en.json';
fs.writeFile(path, '{}', 'utf8', function(err) {
if(err) {
return console.log(err);
}
var enLocale = require(path);
const keys = extract.extractFromFiles(['js/**/*.{js,jsx}'], {
marker: '__',
});
let reports = [];
reports = reports.concat(extract.findMissing(enLocale, keys));
if (reports.length > 0) {
fs.readFile(path, 'utf8', function readFileCallback(err, data){
if (err){
console.log(err);
} else {
localeObj = JSON.parse(data);
for (var i = 0; i < reports.length; i++) {
// no need to care for other types than MISSING because starting file will always be empty
if (reports[i].type === 'MISSING') {
localeObj[reports[i].key] = reports[i].key;
}
}
var json = JSON.stringify(localeObj, null, '\t'); //convert it back to json-string
fs.writeFile(path, json, 'utf8', function callback(err) {
if (err) throw err;
console.log('Extracted all strings!');
});
}
});
}
});