True,_("""Should Lyrics respond in this channel?""")
))
conf.registerChannelValue(Lyrics,
"truncate",
registry.Boolean(
True,_("""Should Lyrics responses be truncated in this channel?""")
))
conf.registerChannelValue(Lyrics,
"lines",
registry.Integer(
1,_("""If truncate is set to true, how many lines should be sent (initially)?""")
))
conf.registerChannelValue(Lyrics,
"mores",
registry.Boolean(
True,_("""If truncate is set to true, should mores be used to allow responses to be continued?""")
))
conf.registerChannelValue(Lyrics,
"quiet",
registry.Boolean(
False,_("""If quiet is set True, Searching... and Found: output will be entirely suppressed.""")
))
conf.registerChannelValue(Lyrics,
"verbose",
registry.Boolean(
False,_("""Send Searching... and Found: output to command context instead of privately via notice. Has no impact if quiet is set to True.""")
))
conf.registerGlobalValue(Lyrics,
"floodexempt",
registry.Boolean(
False,_("""If set, the bot will not delay messages sent when truncation is set to False. This usually requires the bot to have a special connect/oper class, to prevent SendQ/RecvQ quits.""")