mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-22 05:04:58 +05:00
Нормальный фикс
This commit is contained in:
parent
3d054e04c4
commit
2b95b5687e
3 changed files with 2 additions and 2 deletions
|
@ -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",
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
"USAGE": "queue",
|
||||
"EXAMPLES": "queue",
|
||||
"QUEUE": "Очередь",
|
||||
"NO_QUEUE": "Пусто",
|
||||
"ADDED": "Добавил",
|
||||
"MORE": "и ещё {{tracks}}"
|
||||
}
|
|
@ -2,6 +2,5 @@
|
|||
"DESCRIPTION": "Пропустить текущий трек",
|
||||
"USAGE": "skip",
|
||||
"EXAMPLES": "skip",
|
||||
"NO_NEXT_SONG": "Очередь пуста!",
|
||||
"SUCCESS": "Трек пропущен!"
|
||||
}
|
Loading…
Reference in a new issue