mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-22 21:24:59 +05:00
55 lines
No EOL
2.1 KiB
JavaScript
55 lines
No EOL
2.1 KiB
JavaScript
const { Message, CommandInteraction } = require("discord.js");
|
|
|
|
CommandInteraction.prototype.translate = function (key, args) {
|
|
const language = this.client.translations.get(this.guild ? this.guild.data.language : "ru-RU");
|
|
if (!language) throw "Interaction: Invalid language set in data.";
|
|
|
|
return language(key, args);
|
|
};
|
|
|
|
CommandInteraction.prototype.replyT = function (key, args, options = {}) {
|
|
let string = this.translate(key, args, this.guild ? this.guild.data.language : "ru-RU");
|
|
if (options.prefixEmoji) string = `${this.client.customEmojis[options.prefixEmoji]} | ${string}`;
|
|
|
|
if (options.edit) return this.editReply({ content: string, ephemeral: options.ephemeral || false });
|
|
else return this.reply({ content: string, ephemeral: options.ephemeral || false });
|
|
};
|
|
|
|
CommandInteraction.prototype.error = function (key, args, options = {}) {
|
|
options.prefixEmoji = "error";
|
|
|
|
return this.replyT(key, args, options);
|
|
};
|
|
|
|
CommandInteraction.prototype.success = function (key, args, options = {}) {
|
|
options.prefixEmoji = "success";
|
|
|
|
return this.replyT(key, args, options);
|
|
};
|
|
|
|
Message.prototype.translate = function (key, args) {
|
|
const language = this.client.translations.get(this.guild ? this.guild.data.language : "ru-RU");
|
|
if (!language) throw "Message: Invalid language set in data.";
|
|
|
|
return language(key, args);
|
|
};
|
|
|
|
Message.prototype.replyT = function (key, args, options = {}) {
|
|
let string = this.translate(key, args, this.guild ? this.guild.data.language : "ru-RU");
|
|
if (options.prefixEmoji) string = `${this.client.customEmojis[options.prefixEmoji]} | ${string}`;
|
|
|
|
if (options.edit) return this.edit({ content: string, allowedMentions: { repliedUser: options.mention ? true : false } });
|
|
else return this.reply({ content: string, allowedMentions: { repliedUser: options.mention ? true : false } });
|
|
};
|
|
|
|
Message.prototype.error = function (key, args, options = {}) {
|
|
options.prefixEmoji = "error";
|
|
|
|
return this.replyT(key, args, options);
|
|
};
|
|
|
|
Message.prototype.success = function (key, args, options = {}) {
|
|
options.prefixEmoji = "success";
|
|
|
|
return this.replyT(key, args, options);
|
|
}; |