From 434cb217859422b43e0b2e1a4983e41b60aabdda Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Fri, 8 Nov 2019 17:56:41 +0100 Subject: [PATCH] Translate zawarudo error messages --- royalnet/packs/royal/commands/zawarudo.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/royalnet/packs/royal/commands/zawarudo.py b/royalnet/packs/royal/commands/zawarudo.py index dfebe3e9..06f1c946 100644 --- a/royalnet/packs/royal/commands/zawarudo.py +++ b/royalnet/packs/royal/commands/zawarudo.py @@ -26,13 +26,13 @@ class ZawarudoCommand(Command): else: guilds = bot.client.guilds if len(guilds) == 0: - raise CommandError("No guilds with the specified name found.") + raise CommandError("Server non trovato.") if len(guilds) > 1: - raise CommandError("Multiple guilds with the specified name found.") + raise CommandError("Il nome del server è ambiguo.") guild = list(bot.client.guilds)[0] # Ensure the guild has a PlayMode before adding the file to it if not bot.music_data.get(guild): - raise CommandError("No music_data for this guild") + raise CommandError("Il bot non è in nessun canale vocale.") # Create url ytdl_args = { "format": "bestaudio",