diff --git a/redbot/cogs/audio/core/commands/audioset.py b/redbot/cogs/audio/core/commands/audioset.py index 6d51d0e7f..e8e9a4b06 100644 --- a/redbot/cogs/audio/core/commands/audioset.py +++ b/redbot/cogs/audio/core/commands/audioset.py @@ -1013,7 +1013,7 @@ class AudioSetCommands(MixinMeta, metaclass=CompositeMetaClass): "Songs as status: [{status}]\n" "Persist queue: [{persist_queue}]\n" "Spotify search: [{countrycode}]\n" - "Auto-Deafen: [{countrycode}]\n" + "Auto-Deafen: [{auto_deafen}]\n" ).format( countrycode=countrycode, repeat=song_repeat, diff --git a/redbot/cogs/audio/core/commands/player.py b/redbot/cogs/audio/core/commands/player.py index a8923db2f..807c3b05e 100644 --- a/redbot/cogs/audio/core/commands/player.py +++ b/redbot/cogs/audio/core/commands/player.py @@ -607,7 +607,7 @@ class PlayerCommands(MixinMeta, metaclass=CompositeMetaClass): ctx, title=_("Unable to Get Track"), description=_( - "I'm unable get a track from Lavalink at the moment, try again in a few " + "I'm unable to get a track from Lavalink at the moment, try again in a few " "minutes." ), ) @@ -741,7 +741,7 @@ class PlayerCommands(MixinMeta, metaclass=CompositeMetaClass): ctx, title=_("Unable to Get Track"), description=_( - "I'm unable get a track from Lavalink at the moment, " + "I'm unable to get a track from Lavalink at the moment, " "try again in a few minutes." ), ) @@ -757,7 +757,7 @@ class PlayerCommands(MixinMeta, metaclass=CompositeMetaClass): ctx, title=_("Unable to Get Track"), description=_( - "I'm unable get a track from Lavalink at the moment, " + "I'm unable to get a track from Lavalink at the moment, " "try again in a few minutes." ), ) @@ -873,7 +873,7 @@ class PlayerCommands(MixinMeta, metaclass=CompositeMetaClass): ctx, title=_("Unable to Get Track"), description=_( - "I'm unable get a track from Lavalink at the moment," + "I'm unable to get a track from Lavalink at the moment," "try again in a few minutes." ), ) diff --git a/redbot/cogs/audio/core/commands/playlists.py b/redbot/cogs/audio/core/commands/playlists.py index 24e40cf25..e4974f053 100644 --- a/redbot/cogs/audio/core/commands/playlists.py +++ b/redbot/cogs/audio/core/commands/playlists.py @@ -1870,7 +1870,7 @@ class PlaylistCommands(MixinMeta, metaclass=CompositeMetaClass): ctx, title=_("Unable to Get Track"), description=_( - "I'm unable get a track from Lavalink at the moment, try again in a few " + "I'm unable to get a track from Lavalink at the moment, try again in a few " "minutes." ), ) diff --git a/redbot/cogs/audio/core/events/lavalink.py b/redbot/cogs/audio/core/events/lavalink.py index 8b94a1f76..6a7dbd331 100644 --- a/redbot/cogs/audio/core/events/lavalink.py +++ b/redbot/cogs/audio/core/events/lavalink.py @@ -93,7 +93,7 @@ class LavalinkEvents(MixinMeta, metaclass=CompositeMetaClass): notify_channel, title=_("Unable to Get Track"), description=_( - "I'm unable get a track from Lavalink at the moment, try again in a few " + "I'm unable to get a track from Lavalink at the moment, try again in a few " "minutes." ), ) diff --git a/redbot/cogs/audio/core/utilities/player.py b/redbot/cogs/audio/core/utilities/player.py index 64659f301..f60ca4a8a 100644 --- a/redbot/cogs/audio/core/utilities/player.py +++ b/redbot/cogs/audio/core/utilities/player.py @@ -297,7 +297,7 @@ class PlayerUtilities(MixinMeta, metaclass=CompositeMetaClass): ctx, title=_("Unable to Get Track"), description=_( - "I'm unable get a track from Lavalink at the moment, " + "I'm unable to get a track from Lavalink at the moment, " "try again in a few minutes." ), ) @@ -383,7 +383,7 @@ class PlayerUtilities(MixinMeta, metaclass=CompositeMetaClass): ctx, title=_("Unable to Get Track"), description=_( - "I'm unable get a track from Lavalink at the moment, " + "I'm unable to get a track from Lavalink at the moment, " "try again in a few minutes." ), ) @@ -644,7 +644,7 @@ class PlayerUtilities(MixinMeta, metaclass=CompositeMetaClass): ctx, title=_("Unable to Get Track"), description=_( - "I'm unable get a track from Lavalink at the moment," + "I'm unable to get a track from Lavalink at the moment," "try again in a few minutes." ), error=True, diff --git a/redbot/cogs/audio/core/utilities/playlists.py b/redbot/cogs/audio/core/utilities/playlists.py index 953547a10..1b4cea9bf 100644 --- a/redbot/cogs/audio/core/utilities/playlists.py +++ b/redbot/cogs/audio/core/utilities/playlists.py @@ -409,7 +409,7 @@ class PlaylistUtilities(MixinMeta, metaclass=CompositeMetaClass): ctx, title=_("Unable to Get Track"), description=_( - "I'm unable get a track from Lavalink at the moment, " + "I'm unable to get a track from Lavalink at the moment, " "try again in a few minutes." ), ) @@ -595,7 +595,7 @@ class PlaylistUtilities(MixinMeta, metaclass=CompositeMetaClass): ctx, title=_("Unable to Get Track"), description=_( - "I'm unable get a track from Lavalink at the moment, try again in a few " + "I'm unable to get a track from Lavalink at the moment, try again in a few " "minutes." ), ) @@ -621,7 +621,7 @@ class PlaylistUtilities(MixinMeta, metaclass=CompositeMetaClass): ctx, title=_("Unable to Get Track"), description=_( - "I'm unable get a track from Lavalink at the moment, try again in a few " + "I'm unable to get a track from Lavalink at the moment, try again in a few " "minutes." ), )