From a1914034cca5f289fa718a07035cfda1e4800af4 Mon Sep 17 00:00:00 2001 From: tippfehlr Date: Thu, 11 Apr 2024 16:26:41 +0200 Subject: [PATCH] change: rename help menu to help page It is not a menu --- src/modules/commands/help.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/commands/help.ts b/src/modules/commands/help.ts index cddcbcf..749acec 100644 --- a/src/modules/commands/help.ts +++ b/src/modules/commands/help.ts @@ -8,8 +8,8 @@ import { getLang } from '../db'; export default { data: new SlashCommandBuilder() .setName('help') - .setDescription('Shows the help menu') - .setDescriptionLocalizations(discordTranslations('help->description:Shows the help menu')), + .setDescriptionLocalizations(discordTranslations('help->description:Shows the help page')) + .setDescription(__({ phrase: 'help->description', locale: 'en-US' })), execute: async interaction => { const locale = getLang(interaction);