Fix assert translations for deprecated keys
This commit is contained in:
parent
8a1c04ff58
commit
8294686f80
@ -79,7 +79,7 @@ define(req, function(Util, Default, Language) {
|
|||||||
});
|
});
|
||||||
Object.keys(translation).forEach(function (k) {
|
Object.keys(translation).forEach(function (k) {
|
||||||
if (/^_/.test(k) || k === 'driveReadme') { return; }
|
if (/^_/.test(k) || k === 'driveReadme') { return; }
|
||||||
if (!Default[k]) {
|
if (typeof Default[k] === "undefined") {
|
||||||
missing.push([code, k, 0]);
|
missing.push([code, k, 0]);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user