From 1e73019f595fdda0755370c30a27cb8dce83de23 Mon Sep 17 00:00:00 2001 From: JonnyBro Date: Sun, 26 Dec 2021 13:40:11 +0500 Subject: [PATCH] small improvements --- commands/Music/filters.js | 2 +- languages/en-US/music/filter.json | 4 ++-- languages/ru-RU/music/filter.json | 8 ++++---- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/commands/Music/filters.js b/commands/Music/filters.js index e38931ae..7acb67d4 100644 --- a/commands/Music/filters.js +++ b/commands/Music/filters.js @@ -28,7 +28,7 @@ class Filters extends Command { Object.keys(this.client.player.filters).forEach((filterName) => { const array = filtersStatuses[0].length > filtersStatuses[1].length ? filtersStatuses[1] : filtersStatuses[0]; - array.push(filterName + " : " + (queue.filters[filterName] ? this.client.customEmojis.success : this.client.customEmojis.error)); + array.push(`${filterName}: ${(queue.filters[filterName] ? this.client.customEmojis.success : this.client.customEmojis.error)}`); }); const list = new Discord.MessageEmbed() diff --git a/languages/en-US/music/filter.json b/languages/en-US/music/filter.json index 6235fca0..902cd5d7 100644 --- a/languages/en-US/music/filter.json +++ b/languages/en-US/music/filter.json @@ -2,8 +2,8 @@ "DESCRIPTION": "Enable or disable a filter", "USAGE": "{{prefix}}filter [filter]", "EXAMPLES": "{{prefix}}filter vaporwave", - "MISSING_FILTER": "Please specify a valid filter to enable or disable! (or send `{{prefix}}filters` to get the statuses of the filters)", + "MISSING_FILTER": "Please specify a valid filter to enable it! (or send `{{prefix}}filters` to get the statuses of the filters)", "UNKNOWN_FILTER": "This filter doesn't exist! Send `{{prefix}}filters` to get the list!", "ADDING_FILTER": "I'm adding the filter to the music, please wait...", - "REMOVING_FILTER": "I'm removing the filter to the music, please wait..." + "REMOVING_FILTER": "I'm removing the filters from music, please wait..." } \ No newline at end of file diff --git a/languages/ru-RU/music/filter.json b/languages/ru-RU/music/filter.json index ef7f6041..55c0ef71 100644 --- a/languages/ru-RU/music/filter.json +++ b/languages/ru-RU/music/filter.json @@ -2,8 +2,8 @@ "DESCRIPTION": "Включить или отключить фильтр", "USAGE": "{{prefix}}filter [фильтр]", "EXAMPLES": "{{prefix}}filter vaporwave", - "MISSING_FILTER": "Укажите фильтр для его включения или отключения! (или отправьте `{{prefix}}filters`, чтобы увидеть статусы фильтров)", - "UNKNOWN_FILTER": "Заданный фильтр не существует! Используйте `{{prefix}}filters`, чтобы увидеть список фильтров!", - "ADDING_FILTER": "Добавляю фильтр, пожалуйста подождите...", - "REMOVING_FILTER": "Удаляю фильтр, пожалуйста подождите..." + "MISSING_FILTER": "Укажите фильтр для его включения! (или отправьте `{{prefix}}filters`, чтобы увидеть статусы фильтров)", + "UNKNOWN_FILTER": "Заданный фильтр не существует! Используйте `{{prefix}}filters` чтобы увидеть список фильтров или `{{prefix}}filter off` чтобы отключить все фильтры!", + "ADDING_FILTER": "Добавляю фильтры, пожалуйста подождите...", + "REMOVING_FILTER": "Удаляю фильтры, пожалуйста подождите..." } \ No newline at end of file