optimize language builder

This commit is contained in:
Km.Van
2025-12-21 21:30:39 +08:00
parent f99d0b5d9e
commit 889607b029

View File

@@ -2,13 +2,13 @@
* @version 1.0.0
*/
import { writeFileSync } from 'node:fs';
import path, { basename, dirname } from 'node:path';
import { fileURLToPath } from 'node:url';
import DeepSort from 'deep-sort-object';
import FastGlob from 'fast-glob';
import { PoParser } from './po-parser.mjs';
import { PotBuilder } from './pot-builder.mjs';
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 {
@@ -18,18 +18,20 @@ class LangBuilder {
}
setData = async () => {
new PotBuilder({
potPath: path.resolve(__dirname, '../locales/lang.pot'),
sourceDir: path.resolve(__dirname, '../src'),
potPath: path.resolve(__dirname, "../locales/lang.pot"),
sourceDir: path.resolve(__dirname, "../src"),
});
const files = await FastGlob(path.resolve(__dirname, '../locales/*.po'));
for (const file of files) {
const lang = basename(file, '.po');
const langId = lang.replace('_', '').toLowerCase();
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] = {};
}
@@ -44,7 +46,7 @@ class LangBuilder {
this.data = DeepSort(this.data);
const jsonPath = path.resolve(
__dirname,
'../src/Components/Language/data.json'
"../src/Components/Language/data.json"
);
writeFileSync(jsonPath, JSON.stringify(this.data, null, 2));
};