diff --git a/frontend/gulpfile.js b/frontend/gulpfile.js index 2ac9d26ff..44596e08b 100644 --- a/frontend/gulpfile.js +++ b/frontend/gulpfile.js @@ -36,7 +36,7 @@ function readLocales() { const result = {}; for (let lang of langs) { - const content = fs.readFileSync(`./translations/${lang}.po`); + const content = fs.readFileSync(`./translations/${lang}.po`, {encoding:"utf-8"}); lang = lang.toLowerCase();