mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-22 05:04:58 +05:00
фиксы
This commit is contained in:
parent
f6833a1290
commit
282d79077c
3 changed files with 11 additions and 6 deletions
|
@ -1,7 +1,6 @@
|
||||||
const Command = require("../../base/Command.js"),
|
const Command = require("../../base/Command.js"),
|
||||||
Discord = require("discord.js"),
|
Discord = require("discord.js"),
|
||||||
backup = require("discord-backup"),
|
backup = require("discord-backup");
|
||||||
Sentry = require("@sentry/node");
|
|
||||||
|
|
||||||
class Backup extends Command {
|
class Backup extends Command {
|
||||||
constructor(client) {
|
constructor(client) {
|
||||||
|
@ -37,7 +36,7 @@ class Backup extends Command {
|
||||||
message.error("misc:CANNOT_DM");
|
message.error("misc:CANNOT_DM");
|
||||||
});
|
});
|
||||||
}).catch((err) => {
|
}).catch((err) => {
|
||||||
Sentry.captureException(err);
|
console.error(err);
|
||||||
return message.error("misc:ERR_OCCURRED");
|
return message.error("misc:ERR_OCCURRED");
|
||||||
});
|
});
|
||||||
} else if (status === "load") {
|
} else if (status === "load") {
|
||||||
|
@ -62,7 +61,7 @@ class Backup extends Command {
|
||||||
backup.remove(backupID);
|
backup.remove(backupID);
|
||||||
message.author.send(message.translate("administration/backup:LOAD_SUCCESS"));
|
message.author.send(message.translate("administration/backup:LOAD_SUCCESS"));
|
||||||
}).catch((err) => {
|
}).catch((err) => {
|
||||||
Sentry.captureException(err);
|
console.error(err);
|
||||||
// If an error occurenced
|
// If an error occurenced
|
||||||
return message.error("misc:ERR_OCCURRED");
|
return message.error("misc:ERR_OCCURRED");
|
||||||
});
|
});
|
||||||
|
@ -96,7 +95,8 @@ class Backup extends Command {
|
||||||
message.channel.send({
|
message.channel.send({
|
||||||
embeds: [embed]
|
embeds: [embed]
|
||||||
});
|
});
|
||||||
}).catch(() => {
|
}).catch((err) => {
|
||||||
|
console.error(err);
|
||||||
// if the backup wasn't found
|
// if the backup wasn't found
|
||||||
return message.error("administration/backup:NO_BACKUP_FOUND", {
|
return message.error("administration/backup:NO_BACKUP_FOUND", {
|
||||||
backupID
|
backupID
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
"EXAMPLES": "{{prefix}}backup create\n{{prefix}}backup load 123456789098765432\n{{prefix}}backup info 123456789098765432",
|
"EXAMPLES": "{{prefix}}backup create\n{{prefix}}backup load 123456789098765432\n{{prefix}}backup info 123456789098765432",
|
||||||
"MISSING_STATUS": "Выберите действие: `create`, `load`, `info` или `remove`!",
|
"MISSING_STATUS": "Выберите действие: `create`, `load`, `info` или `remove`!",
|
||||||
"MISSING_BACKUP_ID": "Укажите ID резервной копии!",
|
"MISSING_BACKUP_ID": "Укажите ID резервной копии!",
|
||||||
"NO_BACKUP_FOUND": "Резервных копий для `{{backupID}} не найдено`",
|
"NO_BACKUP_FOUND": "Резервных копий с ID `{{backupID}}` не найдено",
|
||||||
"TIMES_UP": "Время вышло! Используйте команду снова!",
|
"TIMES_UP": "Время вышло! Используйте команду снова!",
|
||||||
"SUCCESS_PUBLIC": "Резервная копия успешно создана! ID резервной копии был отправлен вам в ЛС!",
|
"SUCCESS_PUBLIC": "Резервная копия успешно создана! ID резервной копии был отправлен вам в ЛС!",
|
||||||
"SUCCESS_PRIVATE": "Вот ID вашей резервной копии: `{{backupID}}`, используйте его для восстановления на другом сервере!",
|
"SUCCESS_PRIVATE": "Вот ID вашей резервной копии: `{{backupID}}`, используйте его для восстановления на другом сервере!",
|
||||||
|
|
5
languages/ru-RU/fun/tictactoe.json
Normal file
5
languages/ru-RU/fun/tictactoe.json
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
"DESCRIPTION": "Крестики-нолики!",
|
||||||
|
"USAGE": "{{prefix}}tictactoe",
|
||||||
|
"EXAMPLES": "{{prefix}}tictactoe"
|
||||||
|
}
|
Loading…
Reference in a new issue