JaBa/helpers/languages.js

49 lines
1.3 KiB
JavaScript
Raw Normal View History

2021-12-10 21:39:54 +05:00
const i18next = require("i18next");
const Backend = require("i18next-node-fs-backend");
const path = require("path");
const fs = require("fs").promises;
async function walkDirectory(dir, namespaces = [], folderName = "") {
const files = await fs.readdir(dir);
const languages = [];
for (const file of files) {
const stat = await fs.stat(path.join(dir, file));
if (stat.isDirectory()) {
const isLanguage = file.includes("-");
if (isLanguage) languages.push(file);
2021-12-16 23:42:58 +05:00
const folder = await walkDirectory(path.join(dir, file), namespaces, isLanguage ? "" : `${file}/`);
2021-12-10 21:39:54 +05:00
namespaces = folder.namespaces;
} else {
namespaces.push(`${folderName}${file.substr(0, file.length - 5)}`);
};
};
return { namespaces: [...new Set(namespaces)], languages };
};
module.exports = async () => {
const options = {
jsonIndent: 2,
loadPath: path.resolve(__dirname, "../languages/{{lng}}/{{ns}}.json")
};
2021-12-16 23:42:58 +05:00
const { namespaces, languages } = await walkDirectory(path.resolve(__dirname, "../languages/"));
2021-12-10 21:39:54 +05:00
i18next.use(Backend);
await i18next.init({
backend: options,
debug: false,
fallbackLng: "en-US",
initImmediate: false,
interpolation: { escapeValue: false },
load: "all",
ns: namespaces,
preload: languages
});
return new Map(languages.map(item => [item, i18next.getFixedT(item)]));
};