Нормальный фикс

This commit is contained in:
JonnyBro 2022-08-07 14:10:56 +05:00
parent 3d054e04c4
commit 2b95b5687e
3 changed files with 2 additions and 2 deletions

View file

@ -52,7 +52,7 @@ class Queue extends BaseCommand {
},
{
name: interaction.translate("music/queue:QUEUE"),
value: tracks.length > 0 ? tracks.join("\n") : null
value: tracks.length > 0 ? tracks.join("\n") : interaction.translate("music/queue:NO_QUEUE")
},
{
name: "\u200b",

View file

@ -3,6 +3,7 @@
"USAGE": "queue",
"EXAMPLES": "queue",
"QUEUE": "Очередь",
"NO_QUEUE": "Пусто",
"ADDED": "Добавил",
"MORE": "и ещё {{tracks}}"
}

View file

@ -2,6 +2,5 @@
"DESCRIPTION": "Пропустить текущий трек",
"USAGE": "skip",
"EXAMPLES": "skip",
"NO_NEXT_SONG": "Очередь пуста!",
"SUCCESS": "Трек пропущен!"
}