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
This commit is contained in:
Raphael 2025-11-24 13:48:55 +01:00 committed by Raphaël
parent e531f43d32
commit 5f737a2576

View file

@ -46,7 +46,7 @@ function getUserBadges(userData: {
if (userData.isBuyer) badges.push(emoji.badge.buyer); if (userData.isBuyer) badges.push(emoji.badge.buyer);
if (userData.isOwner) badges.push(emoji.badge.owner); 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 { export default {