From 313435c918b6c81c0b35bdfa83ce9aeb45470690 Mon Sep 17 00:00:00 2001 From: GamesTwoLifeTwoLife Date: Tue, 12 Mar 2024 15:18:58 +0200 Subject: [PATCH] =?UTF-8?q?refactor:=20=D0=9E=D0=BD=D0=BE=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=BE=20=D0=BE=D0=BF=D0=B8=D1=81=20=D0=B4=D0=BB?= =?UTF-8?q?=D1=8F=20=D0=BA=D0=BE=D0=BC=D0=B0=D0=BD=D0=B4=D0=B8=20"ping"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Оновлено параметр lng для опису команди "ping" з "en-US" на "en", а також видалено зайвий рядок для "en-GB". --- commands/info/ping.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/commands/info/ping.js b/commands/info/ping.js index 4661185..0283abf 100644 --- a/commands/info/ping.js +++ b/commands/info/ping.js @@ -7,9 +7,8 @@ const { t } = require("i18next"); module.exports = { data: new SlashCommandBuilder() .setName("ping") - .setDescription(t('commands:info.ping.description', { lng: "en-US" })) + .setDescription(t('commands:info.ping.description', { lng: "en" })) .setDescriptionLocalizations({ - 'en-GB': t('commands:info.ping.description', { lng: "en-GB" }), uk: t('commands:info.ping.description', { lng: "uk" }), ru: t('commands:info.ping.description', { lng: "ru" }) })