From 0ad4fbcc27f9a2790f8945eeadce9ecf98a45a16 Mon Sep 17 00:00:00 2001 From: Louis Mazin Date: Tue, 1 Jul 2025 18:44:04 +0200 Subject: [PATCH] fix content --- commands/trad/trad.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);