Fix assert translations for deprecated keys

pull/1/head
yflory 2018-01-29 15:37:23 +01:00
parent 8a1c04ff58
commit 8294686f80
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ define(req, function(Util, Default, Language) {
});
Object.keys(translation).forEach(function (k) {
if (/^_/.test(k) || k === 'driveReadme') { return; }
if (!Default[k]) {
if (typeof Default[k] === "undefined") {
missing.push([code, k, 0]);
}
});