libpurple/protocols/irc/parse.c

changeset 23895
4d883627111f
parent 23532
bc03c7494ba4
child 23906
6962e96ddd38
equal deleted inserted replaced
23894:00467d0ac393 23895:4d883627111f
121 IRCCmdCallback cb; 121 IRCCmdCallback cb;
122 char *help; 122 char *help;
123 } _irc_cmds[] = { 123 } _irc_cmds[] = {
124 { "action", ":", irc_cmd_ctcp_action, N_("action <action to perform>: Perform an action.") }, 124 { "action", ":", irc_cmd_ctcp_action, N_("action <action to perform>: Perform an action.") },
125 { "away", ":", irc_cmd_away, N_("away [message]: Set an away message, or use no message to return from being away.") }, 125 { "away", ":", irc_cmd_away, N_("away [message]: Set an away message, or use no message to return from being away.") },
126 { "ctcp", "t:", irc_cmd_ctcp, N_("ctcp <nick> <msg>: sends ctcp msg to nick.") },
126 { "chanserv", ":", irc_cmd_service, N_("chanserv: Send a command to chanserv") }, 127 { "chanserv", ":", irc_cmd_service, N_("chanserv: Send a command to chanserv") },
127 { "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.") }, 128 { "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.") },
128 { "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.") }, 129 { "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.") },
129 { "invite", ":", irc_cmd_invite, N_("invite &lt;nick&gt; [room]: Invite someone to join you in the specified channel, or the current channel.") }, 130 { "invite", ":", irc_cmd_invite, N_("invite &lt;nick&gt; [room]: Invite someone to join you in the specified channel, or the current channel.") },
130 { "j", "cv", irc_cmd_join, N_("j &lt;room1&gt;[,room2][,...] [key1[,key2][,...]]: Enter one or more channels, optionally providing a channel key for each if needed.") }, 131 { "j", "cv", irc_cmd_join, N_("j &lt;room1&gt;[,room2][,...] [key1[,key2][,...]]: Enter one or more channels, optionally providing a channel key for each if needed.") },

mercurial