Английский неактуален

This commit is contained in:
JonnyBro 2021-12-21 00:37:20 +05:00
parent 0f7bce401c
commit 13db3cf00f
3 changed files with 4 additions and 20 deletions

View file

@ -82,10 +82,8 @@ router.get("/callback", async (req, res) => {
if (!userDB.logged && logsChannel && user) {
const embed = new Discord.MessageEmbed()
.setAuthor(user.username, user.displayAvatarURL())
.setColor("#DA70D6")
.setDescription(req.client.translate("dashboard:FIRST_LOGIN", {
user: user.tag
}));
.setColor(req.client.config.embed.color)
.setDescription(req.client.translate("dashboard:FIRST_LOGIN", { user: user.tag }));
logsChannel.send(embed);
userDB.logged = true;
userDB.save();

View file

@ -25,8 +25,8 @@ module.exports = class {
};
const thanksEmbed = new Discord.MessageEmbed()
.setAuthor("Спасибо что добавили меня на свой сервер!\nThank you for adding me to your guild!")
.setDescription(`Для настроек используйте \`${this.client.config.prefix}help\` и посмотрите на административные команды!\nЧтобы изменить язык используйте \`${this.client.config.prefix}setlang [язык]\`.\n\nTo configure me, type \`${this.client.config.prefix}help\` and look at the administration commands!\nTo change the language, type \`${this.client.config.prefix}setlang [language]\`.`)
.setAuthor("Спасибо что добавили меня на свой сервер!")
.setDescription(`Для настроек используйте \`${this.client.config.prefix}help\` и посмотрите на административные команды!\nЧтобы изменить язык используйте \`${this.client.config.prefix}setlang [язык]\`.`)
.setColor(this.client.config.embed.color)
.setFooter(this.client.config.embed.footer)
.setTimestamp();

View file

@ -12,19 +12,5 @@
"ru_ru",
"ru_RU"
]
},
{
"name": "en-US",
"nativeName": "Английский",
"moment": "en",
"defaultMomentFormat": "MMMM Do YYYY",
"default": false,
"aliases": [
"English",
"en",
"en-us",
"en_us",
"en_US"
]
}
]