diff --git a/build-scripts/gulp/translations.js b/build-scripts/gulp/translations.js index 014df9f018..63932c0b91 100755 --- a/build-scripts/gulp/translations.js +++ b/build-scripts/gulp/translations.js @@ -214,6 +214,8 @@ gulp.task( const lang = subtags.slice(0, i).join("-"); if (lang === "test") { src.push(workDir + "/test.json"); + } else if (lang === "en") { + src.push("src/translations/en.json"); } else { src.push(inDir + "/" + lang + ".json"); }