Missing translations are now returned as an array of arrays

pull/1/head
yflory 8 years ago
parent 11d9c9e813
commit 3b71c8b0b5

@ -53,15 +53,17 @@ define(req, function(Default, Language) {
Object.keys(Default).forEach(function (k) {
if (/^_/.test(k) || /nitialState$/.test(k)) { return; }
if (!translation[k]) {
var warning = "key [" + k + "] is missing from translation [" + code + "]";
missing.push(warning);
//var warning = "key [" + k + "] is missing from translation [" + code + "]";
//missing.push(warning);
missing.push([code, k, 1]);
}
});
Object.keys(translation).forEach(function (k) {
if (/^_/.test(k) || /nitialState$/.test(k)) { return; }
if (!Default[k]) {
var warning = "key [" + k + "] from [" + code + "] is not needed anymore and should be removed";
missing.push(warning);
//var warning = "key [" + k + "] from [" + code + "] is not needed anymore and should be removed";
//missing.push(warning);
missing.push([code, k, 0]);
}
});
/*if (typeof(translation._languageName) !== 'string') {

Loading…
Cancel
Save