You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
557 B
26 lines
557 B
1 month ago
|
// For #5231
|
||
|
|
||
|
const fs = require("fs");
|
||
|
|
||
|
let path = "../src/lang";
|
||
|
|
||
|
// list directories in the lang directory
|
||
|
let jsonFileList = fs.readdirSync(path);
|
||
|
|
||
|
for (let jsonFile of jsonFileList) {
|
||
|
if (!jsonFile.endsWith(".json")) {
|
||
|
continue;
|
||
|
}
|
||
|
|
||
|
let jsonPath = path + "/" + jsonFile;
|
||
|
let langData = JSON.parse(fs.readFileSync(jsonPath, "utf8"));
|
||
|
|
||
|
for (let key in langData) {
|
||
|
if (langData[key] === "") {
|
||
|
delete langData[key];
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fs.writeFileSync(jsonPath, JSON.stringify(langData, null, 4) + "\n");
|
||
|
}
|