From 5f737a2576d05487ff19cfd1ddf28a337186982d Mon Sep 17 00:00:00 2001 From: Raphael Date: Mon, 24 Nov 2025 13:48:55 +0100 Subject: [PATCH] style(commands/utils): Translate the role configuration - Yes maybe one day will do the english and french configuration planed once the bot will be functionnal --- src/commands/utils/info.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/utils/info.ts b/src/commands/utils/info.ts index fc594f0..9f5e587 100644 --- a/src/commands/utils/info.ts +++ b/src/commands/utils/info.ts @@ -46,7 +46,7 @@ function getUserBadges(userData: { if (userData.isBuyer) badges.push(emoji.badge.buyer); if (userData.isOwner) badges.push(emoji.badge.owner); - return badges.length > 0 ? badges.join(' ') : 'Aucun badge'; + return badges.length > 0 ? badges.join(' ') : 'No badge'; } export default {