Files
archived-x-prober/tools/lang-builder.mjs
2025-12-21 21:30:39 +08:00

55 lines
1.5 KiB
JavaScript

/**
* @version 1.0.0
*/
import { writeFileSync } from "node:fs";
import { glob } from "node:fs/promises";
import path, { basename, dirname } from "node:path";
import { fileURLToPath } from "node:url";
import DeepSort from "deep-sort-object";
import { PoParser } from "./po-parser.mjs";
import { PotBuilder } from "./pot-builder.mjs";
const __dirname = dirname(fileURLToPath(import.meta.url));
class LangBuilder {
data = {};
constructor() {
this.build();
}
setData = async () => {
new PotBuilder({
potPath: path.resolve(__dirname, "../locales/lang.pot"),
sourceDir: path.resolve(__dirname, "../src"),
});
for await (const file of glob(path.resolve(__dirname, "../locales/*.po"))) {
const lang = basename(file, ".po");
const langId = lang.replace("_", "").toLowerCase();
const parser = new PoParser({
poPath: path.resolve(__dirname, `../locales/${lang}.po`),
});
const items = parser.parse();
for (const text of Object.keys(items)) {
if (text === "") {
continue;
}
if (!this.data[text]) {
this.data[text] = {};
}
if (!this.data[text][langId]) {
this.data[text][langId] = items[text];
}
}
}
};
build = async () => {
await this.setData();
this.data = DeepSort(this.data);
const jsonPath = path.resolve(
__dirname,
"../src/Components/Language/data.json"
);
writeFileSync(jsonPath, JSON.stringify(this.data, null, 2));
};
}
new LangBuilder();