Update README.md + Translations (#6)

* Update README.md

Now we don't have config.env anymore, we now use config.json inside props folder

* Add portuguese.json

* Set portuguese language if  user's telegram app is in portuguese

* oh fudge, I forgot this one

---------

Co-authored-by: GiovaniFZ <giovanifinazzi@gmail.com>
This commit is contained in:
mthlma 2024-07-25 23:40:22 -03:00 committed by GitHub
parent c692edbc66
commit fd3196a34f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 52 additions and 14 deletions

View file

@ -1,6 +1,6 @@
const Strings = require('../locales/english.json');
const Config = require('../props/config.json');
const os = require('os');
const { getStrings } = require('./checklang');
function formatUptime(uptime) {
const hours = Math.floor(uptime / 3600);
@ -34,6 +34,7 @@ function getSystemInfo() {
// Função para obter informações do usuário
async function getUserInfo(ctx) {
const Strings = getStrings(ctx.from.language_code);
let userInfoTemplate = Strings.userInfo;
const userName = ctx.from.first_name || Strings.unKnown;
@ -56,6 +57,7 @@ async function getUserInfo(ctx) {
// Função para obter informações do chat
async function getChatInfo(ctx) {
const Strings = getStrings(ctx.from.language_code);
if (ctx.chat.type === 'group' || ctx.chat.type === 'supergroup') {
let chatInfoTemplate = Strings.chatInfo;