Merge branch 'dev'

This commit is contained in:
Ash Monty 2022-09-20 19:10:59 +02:00
commit b8aeade7d6
No known key found for this signature in database
GPG Key ID: 740B7C88251D49B6

View File

@ -27,7 +27,7 @@ function getLocale(language, region) {
if (fs.pathExistsSync(path)) {
const selectedLocale = require(path);
const finalLocale = merge(baseLocale, selectedLocale);
const finalLocale = merge({}, baseLocale, selectedLocale);
return finalLocale;
}