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"),
|
||||
Discord = require("discord.js"),
|
||||
backup = require("discord-backup"),
|
||||
Sentry = require("@sentry/node");
|
||||
backup = require("discord-backup");
|
||||
|
||||
class Backup extends Command {
|
||||
constructor(client) {
|
||||
|
@ -37,7 +36,7 @@ class Backup extends Command {
|
|||
message.error("misc:CANNOT_DM");
|
||||
});
|
||||
}).catch((err) => {
|
||||
Sentry.captureException(err);
|
||||
console.error(err);
|
||||
return message.error("misc:ERR_OCCURRED");
|
||||
});
|
||||
} else if (status === "load") {
|
||||
|
@ -62,7 +61,7 @@ class Backup extends Command {
|
|||
backup.remove(backupID);
|
||||
message.author.send(message.translate("administration/backup:LOAD_SUCCESS"));
|
||||
}).catch((err) => {
|
||||
Sentry.captureException(err);
|
||||
console.error(err);
|
||||
// If an error occurenced
|
||||
return message.error("misc:ERR_OCCURRED");
|
||||
});
|
||||
|
@ -96,7 +95,8 @@ class Backup extends Command {
|
|||
message.channel.send({
|
||||
embeds: [embed]
|
||||
});
|
||||
}).catch(() => {
|
||||
}).catch((err) => {
|
||||
console.error(err);
|
||||
// if the backup wasn't found
|
||||
return message.error("administration/backup:NO_BACKUP_FOUND", {
|
||||
backupID
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
"EXAMPLES": "{{prefix}}backup create\n{{prefix}}backup load 123456789098765432\n{{prefix}}backup info 123456789098765432",
|
||||
"MISSING_STATUS": "Выберите действие: `create`, `load`, `info` или `remove`!",
|
||||
"MISSING_BACKUP_ID": "Укажите ID резервной копии!",
|
||||
"NO_BACKUP_FOUND": "Резервных копий для `{{backupID}} не найдено`",
|
||||
"NO_BACKUP_FOUND": "Резервных копий с ID `{{backupID}}` не найдено",
|
||||
"TIMES_UP": "Время вышло! Используйте команду снова!",
|
||||
"SUCCESS_PUBLIC": "Резервная копия успешно создана! ID резервной копии был отправлен вам в ЛС!",
|
||||
"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