do not warn for every translation

This commit is contained in:
Sebastian 2022-04-25 23:07:46 -03:00
parent 41ab855736
commit 4aa8adbde3
No known key found for this signature in database
GPG Key ID: BE4FF68352439FC1

View File

@ -15,7 +15,7 @@ export function setupI18n(lang: string, strings: { [s: string]: any }): any {
if (!strings[lang]) {
strings[lang] = {}
logger.warn(`language ${lang} not found, defaulting to source strings`);
// logger.warn(`language ${lang} not found, defaulting to source strings`);
}
jed = new jedLib.Jed(strings[lang]);
}