translator – handle "english" in listMissingTranslations

This commit is contained in:
Andrea Vos 2024-05-26 11:58:27 +02:00
parent 49411cfe10
commit 9bf1a47a3b

View File

@ -144,6 +144,10 @@ export function listMissingTranslations(
return false;
}
if (!config.english.enabled && keyMatches('english.')) {
return false;
}
return true;
});
}