diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2005-12-21 11:39:49 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2005-12-21 11:39:49 +0000 |
commit | d3bfff3d6563c9e212ecaa350a61b43e0a70183c (patch) | |
tree | f7eee422546e9a77c87de0493673faca804fcfea /src/irc | |
parent | b0d10367d37178452d4d0e30f414a96a1f05f743 (diff) | |
download | weechat-d3bfff3d6563c9e212ecaa350a61b43e0a70183c.zip |
Fixed typos in some command helps ("&" now forbidden for XML doc)
Diffstat (limited to 'src/irc')
-rw-r--r-- | src/irc/irc-commands.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/irc/irc-commands.c b/src/irc/irc-commands.c index b893e67df..342d32f11 100644 --- a/src/irc/irc-commands.c +++ b/src/irc/irc-commands.c @@ -209,7 +209,7 @@ t_irc_command irc_commands[] = N_("nickname: nickname for private conversation\n" " text: text to send"), "%n %-", 1, MAX_ARGS, 1, NULL, irc_cmd_send_query, NULL }, - { "quit", N_("close all connections & quit"), + { "quit", N_("close all connections and quit"), N_("[quit_message]"), N_("quit_message: quit message (displayed to other users)"), "%q", 0, MAX_ARGS, 0, NULL, irc_cmd_send_quit, irc_cmd_recv_quit }, @@ -415,7 +415,7 @@ t_irc_command irc_commands[] = N_("channel: name of channel\n" " topic: topic of the channel"), NULL, 2, MAX_ARGS, 1, NULL, NULL, irc_cmd_recv_332 }, - { "333", N_("infos about topic (nick & date changed)"), "", "", + { "333", N_("infos about topic (nick and date changed)"), "", "", NULL, 0, 0, 1, NULL, NULL, irc_cmd_recv_333 }, { "341", N_("inviting"), "", "", NULL, 0, 0, 1, NULL, NULL, irc_cmd_recv_341 }, |