diff --git a/scripts/merge-i18n-files.ts b/scripts/merge-i18n-files.ts index fc44665f7c..f184b46217 100644 --- a/scripts/merge-i18n-files.ts +++ b/scripts/merge-i18n-files.ts @@ -93,7 +93,7 @@ function mergeFileWithSource(pathToSourceFile, pathToOutputFile) { parsed_output[key] = parsed_source[key]; } progressBar.update(80); - fs.writeFileSync(pathToOutputFile,JSON5.stringify(parsed_output,{space:'\n '}), {encoding:'utf8'}) + fs.writeFileSync(pathToOutputFile,JSON5.stringify(parsed_output,{ space:'\n ', quote: '"' }), { encoding:'utf8' }) progressBar.update(100); progressBar.stop();