fix
This commit is contained in:
parent
3d6d90a137
commit
51a7bab9ff
|
@ -21,15 +21,15 @@ const merge = (...args) =>
|
||||||
|
|
||||||
fs.readdirSync(__dirname).forEach((file) => {
|
fs.readdirSync(__dirname).forEach((file) => {
|
||||||
if (file.includes(".yml")) {
|
if (file.includes(".yml")) {
|
||||||
locale = file.slice(0, file.indexOf("."));
|
file = file.slice(0, file.indexOf("."));
|
||||||
languages.push(locale);
|
languages.push(file);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
fs.readdirSync(__dirname + "/../custom/locales").forEach((file) => {
|
fs.readdirSync(__dirname + "/../custom/locales").forEach((file) => {
|
||||||
if (file.includes(".yml")) {
|
if (file.includes(".yml")) {
|
||||||
customLocale = file.slice(0, file.indexOf("."));
|
file = file.slice(0, file.indexOf("."));
|
||||||
languages_custom.push(customLocale);
|
languages_custom.push(file);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue