aboutsummaryrefslogtreecommitdiff
path: root/Commands/ping.js
diff options
context:
space:
mode:
Diffstat (limited to 'Commands/ping.js')
-rw-r--r--Commands/ping.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/Commands/ping.js b/Commands/ping.js
index 72ef024..3ee61e0 100644
--- a/Commands/ping.js
+++ b/Commands/ping.js
@@ -20,12 +20,13 @@
***************************************************************************/
import { SlashCommandBuilder } from 'discord.js';
-
+import i18next from '../Utilities/i18n.js';
+const t = i18next.t;
export default {
data: new SlashCommandBuilder()
.setName('ping')
.setDescription('Pong!'),
async execute(interaction, bot) {
- return await interaction.reply(`Pong! ${Math.round(bot.ws.ping)}ms`);
+ return await interaction.reply(`${t('pong')} ${Math.round(bot.ws.ping)}ms`);
}
};