mirror of
https://github.com/abocn/TelegramBot.git
synced 2025-03-10 12:49:57 +00:00
11 lines
227 B
JavaScript
11 lines
227 B
JavaScript
function getStrings(languageCode) {
|
|
if (languageCode === 'pt' || 'pt-br') {
|
|
return require('../locales/portuguese.json');
|
|
} else {
|
|
return require('../locales/english.json');
|
|
}
|
|
}
|
|
|
|
module.exports = {
|
|
getStrings
|
|
}; |