diff options
author | Berke Viktor <berkeviktor@aol.com> | 2012-05-13 14:33:50 +0200 |
---|---|---|
committer | Berke Viktor <berkeviktor@aol.com> | 2012-05-13 14:33:50 +0200 |
commit | 5cc3a49483846800f73feb505e0db8f0a58d57ec (patch) | |
tree | 4c9f3a95c11f231f0a1072b55da988be66448957 /src | |
parent | 7e538d2f44943f3871fcc758cb8ffd2469321ad7 (diff) | |
parent | 3f556398b3de500bf045f561f7a8d1a517a58dae (diff) |
Merge branch 'master' into wdk
Diffstat (limited to 'src')
-rw-r--r-- | src/common/outbound.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/common/outbound.c b/src/common/outbound.c index a09fdce4..b13a33a1 100644 --- a/src/common/outbound.c +++ b/src/common/outbound.c @@ -3513,7 +3513,7 @@ const struct commands xc_cmds[] = { {"ALLCHAN", cmd_allchannels, 0, 0, 1, N_("ALLCHAN <cmd>, sends a command to all channels you're in")}, {"ALLCHANL", cmd_allchannelslocal, 0, 0, 1, - N_("ALLCHANL <cmd>, sends a command to all channels you're in")}, + N_("ALLCHANL <cmd>, sends a command to all channels on the current server")}, {"ALLSERV", cmd_allservers, 0, 0, 1, N_("ALLSERV <cmd>, sends a command to all servers you're in")}, {"AWAY", cmd_away, 1, 0, 1, N_("AWAY [<reason>], sets you away")}, @@ -3521,7 +3521,7 @@ const struct commands xc_cmds[] = { {"BAN", cmd_ban, 1, 1, 1, N_("BAN <mask> [<bantype>], bans everyone matching the mask from the current channel. If they are already on the channel this doesn't kick them (needs chanop)")}, {"CHANOPT", cmd_chanopt, 0, 0, 1, N_("CHANOPT [-quiet] <variable> [<value>]")}, - {"CHARSET", cmd_charset, 0, 0, 1, 0}, + {"CHARSET", cmd_charset, 0, 0, 1, N_("CHARSET [<encoding>], get or set the encoding used for the current connection")}, {"CLEAR", cmd_clear, 0, 0, 1, N_("CLEAR [ALL|HISTORY], Clears the current text window or command history")}, {"CLOSE", cmd_close, 0, 0, 1, N_("CLOSE, Closes the current window/tab")}, @@ -3671,9 +3671,9 @@ const struct commands xc_cmds[] = { N_("SERVER <host> [<port>] [<password>], connects to a server, the default port is 6667")}, #endif {"SET", cmd_set, 0, 0, 1, N_("SET [-e] [-off|-on] [-quiet] <variable> [<value>]")}, - {"SETCURSOR", cmd_setcursor, 0, 0, 1, N_("SETCURSOR [-|+]<position>")}, - {"SETTAB", cmd_settab, 0, 0, 1, 0}, - {"SETTEXT", cmd_settext, 0, 0, 1, 0}, + {"SETCURSOR", cmd_setcursor, 0, 0, 1, N_("SETCURSOR [-|+]<position>, reposition the cursor in the inputbox")}, + {"SETTAB", cmd_settab, 0, 0, 1, N_("SETTAB <new name>, change a tab's name, tab_trunc limit still applies")}, + {"SETTEXT", cmd_settext, 0, 0, 1, N_("SETTEXT <new text>, replace the text in the input box")}, {"SPLAY", cmd_splay, 0, 0, 1, "SPLAY <soundfile>"}, {"TOPIC", cmd_topic, 1, 1, 1, N_("TOPIC [<topic>], sets the topic if one is given, else shows the current topic")}, |