From 5cb519ae46e969d69ce841d295825357016ba7ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fernando=20M=C3=A9ndez?= <45081533+FerMdez@users.noreply.github.com> Date: Wed, 10 Mar 2021 21:01:07 +0100 Subject: [PATCH] Update bot.js --- Alina_translator_Telegram_bot/bot.js | 25 +------------------------ 1 file changed, 1 insertion(+), 24 deletions(-) diff --git a/Alina_translator_Telegram_bot/bot.js b/Alina_translator_Telegram_bot/bot.js index e24e94c..2cef451 100644 --- a/Alina_translator_Telegram_bot/bot.js +++ b/Alina_translator_Telegram_bot/bot.js @@ -22,7 +22,7 @@ const bot = new TelegramBot(token, {polling:true}); /* Translator */ //const translate = require('translate-api'); -const translate = require('@vitalets/google-translate-api'); //https://www.npmjs.com/package/@vitalets/google-translate-api +const translate = require('@vitalets/google-translate-api'); //const translate = require('google-translate-api'); // To overwrite the users.json file: @@ -243,26 +243,3 @@ function indexOfArray(_user){ return index; } - -/* -bot.on('callback_query', function onCallbackQuery(accionboton){ - const data = accionboton.data; - const msg = accionboton.message; - var chatId = msg.chat.id; - - switch(data){ - case 'es_en': _from='es'; _to='en'; - bot.sendMessage(chatId, "Now I will translate the texts from *Spanish*🇪🇸 to *English*🇬🇧.", {parse_mode: 'Markdown'}); - break ; - case 'en_es': _from='en'; _to='es'; - bot.sendMessage(chatId, "Now I will translate the texts from *English*🇬🇧 to *Spanish*🇪🇸.", {parse_mode: 'Markdown'}); - break ; - case 'es_ru': _from='es'; _to='ru'; - bot.sendMessage(chatId, "Now I will translate the texts from *Spanish*🇪🇸 to *Russian*🇷🇺.", {parse_mode: 'Markdown'}); - break ; - case 'ru_es': _from='ru'; _to='es'; - bot.sendMessage(chatId, "Now I will translate the texts from *Russian*🇷🇺 to *Spanish*🇪🇸.", {parse_mode: 'Markdown'}); - break ; - } -}); -*/ \ No newline at end of file