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

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) { if (!userDB.logged && logsChannel && user) {
const embed = new Discord.MessageEmbed() const embed = new Discord.MessageEmbed()
.setAuthor(user.username, user.displayAvatarURL()) .setAuthor(user.username, user.displayAvatarURL())
.setColor("#DA70D6") .setColor(req.client.config.embed.color)
.setDescription(req.client.translate("dashboard:FIRST_LOGIN", { .setDescription(req.client.translate("dashboard:FIRST_LOGIN", { user: user.tag }));
user: user.tag
}));
logsChannel.send(embed); logsChannel.send(embed);
userDB.logged = true; userDB.logged = true;
userDB.save(); userDB.save();

View file

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

View file

@ -12,19 +12,5 @@
"ru_ru", "ru_ru",
"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"
]
} }
] ]