diff --git a/commands/trad/trad.js b/commands/trad/trad.js index c4a8577..089f9a6 100644 --- a/commands/trad/trad.js +++ b/commands/trad/trad.js @@ -55,7 +55,7 @@ module.exports = { const result = await translator.translateText(messageToTranslate.content, null, 'fr'); // Créer la réponse avec la traduction - const translationMessage = `**Traduction :**\n\n${result.text}`; + const translationMessage = `${result.text}\n\n*Message original de ${messageToTranslate.author.username}*`; await interaction.editReply(translationMessage);