/// <summary> /// Send a confirmation message with arguments. The form is an embed with the confirm color.<br/> /// If the key starts with "#", the first word delimited by "_" is the prefix for the translation.<br/> /// If the key doesn't start with "#", the prefix of the translation is the lower module name of this class. /// </summary> public Task <IUserMessage> ReplyConfirmationAsync(IMessageChannel channel, Snowflake guildId, string key, params object[] args) { return(channel.SendConfirmationMessageAsync(Localization.GetText(guildId, key, args))); }