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

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"), 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", name: "\u200b",

View file

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

View file

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