Added available args to queue embed

This commit is contained in:
2022-07-18 14:33:05 +07:00
parent 11e0a8f94a
commit 2b4a534e0c
4 changed files with 9 additions and 0 deletions
+1
View File
@@ -115,6 +115,7 @@
}, },
"musicplayer_queue": { "musicplayer_queue": {
"title": "Queue", "title": "Queue",
"valid_args": "``clear``",
"empty": "The queue is empty! (っ˘ω˘ς )", "empty": "The queue is empty! (っ˘ω˘ς )",
"now_playing": "Now playing", "now_playing": "Now playing",
"upcoming_song": "Upcoming song", "upcoming_song": "Upcoming song",
+1
View File
@@ -115,6 +115,7 @@
}, },
"musicplayer_queue": { "musicplayer_queue": {
"title": "キュー", "title": "キュー",
"valid_args": "``clear``",
"empty": "キューは空です! (っ˘ω˘ς )", "empty": "キューは空です! (っ˘ω˘ς )",
"now_playing": "再生中", "now_playing": "再生中",
"upcoming_song": "次の曲", "upcoming_song": "次の曲",
+1
View File
@@ -115,6 +115,7 @@
}, },
"musicplayer_queue": { "musicplayer_queue": {
"title": "คิวเพลง", "title": "คิวเพลง",
"valid_args": "``clear``",
"empty": "ตอนนี้คิวว่างนะ (っ˘ω˘ς )", "empty": "ตอนนี้คิวว่างนะ (っ˘ω˘ς )",
"now_playing": "กำลังเล่น", "now_playing": "กำลังเล่น",
"upcoming_song": "เพลงต่อไป", "upcoming_song": "เพลงต่อไป",
+6
View File
@@ -62,6 +62,12 @@ const EMBEDS = {
return makeInfoEmbed({ return makeInfoEmbed({
title: locale.__('musicplayer_queue.title'), title: locale.__('musicplayer_queue.title'),
description: description, description: description,
fields: [
{
name: locale.__('common.available_args'),
value: locale.__('musicplayer_queue.valid_args')
}
],
user: data.getUser() user: data.getUser()
}); });
} }