Some small changes based on #6

This commit is contained in:
lucmsilva651 2024-07-25 23:42:24 -03:00
parent fd3196a34f
commit 4771ca669e
No known key found for this signature in database
GPG key ID: D9B075FC6DC93985
8 changed files with 31 additions and 32 deletions

View file

@ -1,11 +1,11 @@
function getStrings(languageCode) {
if (languageCode === 'pt-br') {
return require('../locales/portuguese.json');
} else {
return require('../locales/english.json');
}
if (languageCode === 'pt-br') {
return require('../locales/portuguese.json');
} else {
return require('../locales/english.json');
}
}
module.exports = {
getStrings
};
getStrings
};