# HG changeset patch # User Tim Ringenbach # Date 1086851230 0 # Node ID 43323228a3da82f4e40e4390567e58df13c59c63 # Parent 15d516d07d57e36f89208a3cba7e86f988458cc0 [gaim-migrate @ 10057] Simguy fixed some typos and improved the help strings on some irc commands. committer: Tailor Script diff -r 15d516d07d57 -r 43323228a3da src/protocols/irc/parse.c --- a/src/protocols/irc/parse.c Thu Jun 10 06:43:26 2004 +0000 +++ b/src/protocols/irc/parse.c Thu Jun 10 07:07:10 2004 +0000 @@ -108,29 +108,29 @@ } _irc_cmds[] = { { "action", ":", irc_cmd_ctcp_action, N_("action <action to perform>: Perform an action.") }, { "away", ":", irc_cmd_away, N_("away [message]: Set an away message, or use no message to return from being away.") }, - { "deop", ":", irc_cmd_op, N_("deop <nick1> [nick2] ...: Remove channel operator status from someone. You must have ops yourself to do this.") }, - { "devoice", ":", irc_cmd_op, N_("devoice <nick1> [nick2] ...: Remove channel voice status from someone, preventing them from speaking if the room is +m. You must have ops to do this.") }, - { "invite", ":", irc_cmd_invite, N_("invite <nick> [room]: Invite someone to join you in the specified chat room, or the current room.") }, - { "j", "cv", irc_cmd_join, N_("j <room1>[,room2][,...] [key1[,key2][,...]]: Enter one or more chat rooms, optionally providing a channel key if needed.") }, - { "join", "cv", irc_cmd_join, N_("join <room1>[,room2][,...] [key1[,key2][,...]]: Enter one or more chat rooms, optionally providing a channel key if needed.") }, - { "kick", "n:", irc_cmd_kick, N_("kick <nick> [message]: Remove someone from a room. You must be a channel operator to do this.") }, - { "list", ":", irc_cmd_list, N_("list: Bring up the list of chat rooms. Warning, some servers may disconnect you upon doing this.") }, + { "deop", ":", irc_cmd_op, N_("deop <nick1> [nick2] ...: Remove channel operator status from someone. You must be a channel operator to do this.") }, + { "devoice", ":", irc_cmd_op, N_("devoice <nick1> [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.") }, + { "invite", ":", irc_cmd_invite, N_("invite <nick> [room]: Invite someone to join you in the specified channel, or the current channel.") }, + { "j", "cv", irc_cmd_join, N_("j <room1>[,room2][,...] [key1[,key2][,...]]: Enter one or more channels, optionally providing a channel key for each if needed.") }, + { "join", "cv", irc_cmd_join, N_("join <room1>[,room2][,...] [key1[,key2][,...]]: Enter one or more channels, optionally providing a channel key for each if needed.") }, + { "kick", "n:", irc_cmd_kick, N_("kick <nick> [message]: Remove someone from a channel. You must be a channel operator to do this.") }, + { "list", ":", irc_cmd_list, N_("list: Display a list of chat rooms on the network. Warning, some servers may disconnect you upon doing this.") }, { "me", ":", irc_cmd_ctcp_action, N_("me <action to perform>: Perform an action.") }, { "mode", ":", irc_cmd_mode, N_("mode <nick|channel> <+|-><A-Za-z>: Set or unset a channel or user mode.") }, - { "msg", "t:", irc_cmd_privmsg, N_("msg <nick> <message>: Sent a message to a user (as opposed to a channel).") }, - { "names", "c", irc_cmd_names, N_("names [channel]: See who is in a channel.") }, + { "msg", "t:", irc_cmd_privmsg, N_("msg <nick> <message>: Send a private message to a user (as opposed to a channel).") }, + { "names", "c", irc_cmd_names, N_("names [channel]: List the users currently in a channel.") }, { "nick", "n", irc_cmd_nick, N_("nick <new nick name>: Change your nick name.") }, - { "op", ":", irc_cmd_op, N_("op <nick1> [nick2] ...: Grant channel operator status to someone. You must have ops yourself to do this.") }, + { "op", ":", irc_cmd_op, N_("op <nick1> [nick2] ...: Grant channel operator status to someone. You must be a channel operator to do this.") }, { "operwall", ":", irc_cmd_wallops, N_("operwall <message>: If you don't know what this is, you probably can't use it.") }, - { "part", "c:", irc_cmd_part, N_("part [room] [message]: Leave the current room, or a specified room, with an optional message.") }, + { "part", "c:", irc_cmd_part, N_("part [room] [message]: Leave the current channel, or a specified channel, with an optional message.") }, { "ping", "n", irc_cmd_ping, N_("ping [nick]: Asks how much lag a user (or the server if no user specified) has.") }, - { "query", "n:", irc_cmd_query, N_("query <nick> <message>: Sent a message to a user (as opposed to a channel).") }, + { "query", "n:", irc_cmd_query, N_("query <nick> <message>: Send a private message to a user (as opposed to a channel).") }, { "quit", ":", irc_cmd_quit, N_("quit [message]: Disconnect from the server, with an optional message.") }, { "quote", "*", irc_cmd_quote, N_("quote [...]: Send a raw command to the server.") }, { "remove", "n:", irc_cmd_remove, N_("remove <nick> [message]: Remove someone from a room. You must be a channel operator to do this.") }, { "topic", ":", irc_cmd_topic, N_("topic [new topic]: View or change the channel topic.") }, { "umode", ":", irc_cmd_mode, N_("umode <+|-><A-Za-z>: Set or unset a user mode.") }, - { "voice", ":", irc_cmd_op, N_("voice <nick1> [nick2] ...: Grant channel voice status to someone. You must have ops to do this.") }, + { "voice", ":", irc_cmd_op, N_("voice <nick1> [nick2] ...: Grant channel voice status to someone. You must be a channel operator to do this.") }, { "wallops", ":", irc_cmd_wallops, N_("wallops <message>: If you don't know what this is, you probably can't use it.") }, { "whois", "n", irc_cmd_whois, N_("whois <nick>: Get information on a user.") }, { NULL, NULL, NULL }