This commit is contained in:
ThatOneCalculator 2023-06-16 14:19:42 -07:00
parent 70f46b8fb7
commit 89c95d969f

View file

@ -21,15 +21,15 @@ const merge = (...args) =>
fs.readdirSync(__dirname).forEach((file) => {
if (file.includes(".yml")) {
locale = file.slice(0, file.indexOf("."));
languages.push(locale);
file = file.slice(0, file.indexOf("."));
languages.push(file);
}
});
fs.readdirSync(__dirname + "/../custom/locales").forEach((file) => {
if (file.includes(".yml")) {
customLocale = file.slice(0, file.indexOf("."));
languages_custom.push(customLocale);
file = file.slice(0, file.indexOf("."));
languages_custom.push(file);
}
});