노영우

can translate

const { MessageActionRow, MessageButton, Interaction } = require('discord.js');
const tr =require('./translate')
// var trans = require('./translate');
exports.run = async (client, msg, args, prefix) => {
......@@ -28,8 +29,15 @@ exports.run = async (client, msg, args, prefix) => {
if (!interaction.isButton()) return;
if(interaction.customId === 'korean'){
console.log(tr.temp);
tr.temp
global.trans_var ='ko';
}
else if(interaction.customId === 'japanese'){
global.trans_var ='jp';
}
else if(interaction.customId === 'english'){
global.trans_var ='en';
}
});
......
const translatte = require('translatte');
let temp ='영어모드';
global.trans_var ='en';
exports.run = async (client, msg, args, prefix) => {
if (args[0]) { // 명령어 뒤에 입력값이 있을 경우 (ex. !<명령어> <채팅>)
/*
if(temp=='영어'){
if(trans_var=='en'){
en_translate(args[0]).then(transed_text=> {msg.reply(transed_text)})
}
else if(temp=='일본어'){
else if(trans_var=='jp'){
jp_translate(args[0]).then(transed_text=> {msg.reply(transed_text)})
}
else if(temp=="한국어"){
else if(trans_var=="ko"){
ko_translate(args[0]).then(transed_text=> {msg.reply(transed_text)})
}
*/
en_translate(args[0]).then(transed_text=> {msg.reply(transed_text)})
}
else {
msg.reply("메세지를 다시 확인해주세요.");
......@@ -64,4 +61,10 @@ exports.config = {
category: ['translate'],
des: ['채팅 내용에 대한 검색결과를 보여줍니다.'],
use: ['!번역 <채팅>']
};
\ No newline at end of file
};
/*고칠 것
1. 상호작용 실패 알림 뜨는거
2. !번역, 영어상태에서 영어 번역하면 에러 떠서 멈춰버림
3. 꾸미기(?)
*/
\ No newline at end of file
......