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 , sends a command to all channels you're in")}, {"ALLCHANL", cmd_allchannelslocal, 0, 0, 1, - N_("ALLCHANL , sends a command to all channels you're in")}, + N_("ALLCHANL , sends a command to all channels on the current server")}, {"ALLSERV", cmd_allservers, 0, 0, 1, N_("ALLSERV , sends a command to all servers you're in")}, {"AWAY", cmd_away, 1, 0, 1, N_("AWAY [], sets you away")}, @@ -3521,7 +3521,7 @@ const struct commands xc_cmds[] = { {"BAN", cmd_ban, 1, 1, 1, N_("BAN [], 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] []")}, - {"CHARSET", cmd_charset, 0, 0, 1, 0}, + {"CHARSET", cmd_charset, 0, 0, 1, N_("CHARSET [], 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 [] [], connects to a server, the default port is 6667")}, #endif {"SET", cmd_set, 0, 0, 1, N_("SET [-e] [-off|-on] [-quiet] []")}, - {"SETCURSOR", cmd_setcursor, 0, 0, 1, N_("SETCURSOR [-|+]")}, - {"SETTAB", cmd_settab, 0, 0, 1, 0}, - {"SETTEXT", cmd_settext, 0, 0, 1, 0}, + {"SETCURSOR", cmd_setcursor, 0, 0, 1, N_("SETCURSOR [-|+], reposition the cursor in the inputbox")}, + {"SETTAB", cmd_settab, 0, 0, 1, N_("SETTAB , change a tab's name, tab_trunc limit still applies")}, + {"SETTEXT", cmd_settext, 0, 0, 1, N_("SETTEXT , replace the text in the input box")}, {"SPLAY", cmd_splay, 0, 0, 1, "SPLAY "}, {"TOPIC", cmd_topic, 1, 1, 1, N_("TOPIC [], sets the topic if one is given, else shows the current topic")},