/* eslint-disable max-len */ const translate = require('@vitalets/google-translate-api'); module.exports = { name: 'translate', alias: [], description: 'Translate a message from any language to any language using Google Translate', usage: ' ', trusted: 0, execute: async function(bot, username, usernameraw, sender, prefix, args) { try { const res = await translate(args.slice(2).join(' '), {from: args[0], to: args[1]}); bot.core.run('minecraft:tellraw @a ' + JSON.stringify(['', {text: 'Result: ', color: 'gold'}, {text: res.text, color: 'green'}])); } catch (e) { bot.core.run('minecraft:tellraw @a ' + JSON.stringify({text: String(e), color: 'red'})); } }, };