comparison libpurple/protocols/irc/parse.c @ 31933:6b3bc0947068

merged from im.pidgin.pidgin
author Yoshiki Yazawa <yaz@honeyplanet.jp>
date Thu, 21 Apr 2011 20:36:02 +0900
parents 7281d151e492 30c0ce14388a
children 9aee8493db7f
comparison
equal deleted inserted replaced
31895:8b9e9c61d061 31933:6b3bc0947068
123 char *format; 123 char *format;
124 IRCCmdCallback cb; 124 IRCCmdCallback cb;
125 char *help; 125 char *help;
126 } _irc_cmds[] = { 126 } _irc_cmds[] = {
127 { "action", ":", irc_cmd_ctcp_action, N_("action &lt;action to perform&gt;: Perform an action.") }, 127 { "action", ":", irc_cmd_ctcp_action, N_("action &lt;action to perform&gt;: Perform an action.") },
128 { "authserv", ":", irc_cmd_service, N_("authserv: Send a command to authserv") },
128 { "away", ":", irc_cmd_away, N_("away [message]: Set an away message, or use no message to return from being away.") }, 129 { "away", ":", irc_cmd_away, N_("away [message]: Set an away message, or use no message to return from being away.") },
129 { "ctcp", "t:", irc_cmd_ctcp, N_("ctcp <nick> <msg>: sends ctcp msg to nick.") }, 130 { "ctcp", "t:", irc_cmd_ctcp, N_("ctcp <nick> <msg>: sends ctcp msg to nick.") },
130 { "chanserv", ":", irc_cmd_service, N_("chanserv: Send a command to chanserv") }, 131 { "chanserv", ":", irc_cmd_service, N_("chanserv: Send a command to chanserv") },
131 { "deop", ":", irc_cmd_op, N_("deop &lt;nick1&gt; [nick2] ...: Remove channel operator status from someone. You must be a channel operator to do this.") }, 132 { "deop", ":", irc_cmd_op, N_("deop &lt;nick1&gt; [nick2] ...: Remove channel operator status from someone. You must be a channel operator to do this.") },
132 { "devoice", ":", irc_cmd_op, N_("devoice &lt;nick1&gt; [nick2] ...: Remove channel voice status from someone, preventing them from speaking if the channel is moderated (+m). You must be a channel operator to do this.") }, 133 { "devoice", ":", irc_cmd_op, N_("devoice &lt;nick1&gt; [nick2] ...: Remove channel voice status from someone, preventing them from speaking if the channel is moderated (+m). You must be a channel operator to do this.") },