1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-12 14:14:48 +02:00

xfer: format and translate commands line by line (issue #2005)

This commit is contained in:
Sébastien Helleu
2023-09-09 21:21:55 +02:00
parent 7702ed56ea
commit fa1e82d500
+7 -5
View File
@@ -258,17 +258,19 @@ xfer_command_init ()
N_("send a CTCP action to remote host"),
/* TRANSLATORS: only text between angle brackets (eg: "<name>") must be translated */
N_("<message>"),
N_("message: message to send"),
WEECHAT_CMD_ARGS_DESC(
N_("message: message to send")),
NULL,
&xfer_command_me, NULL, NULL);
weechat_hook_command (
"xfer",
N_("xfer control"),
"[list|listfull]",
N_(" list: list xfer\n"
"listfull: list xfer (verbose)\n"
"\n"
"Without argument, this command opens buffer with xfer list."),
WEECHAT_CMD_ARGS_DESC(
N_("raw[list]: list xfer"),
N_("raw[listfull]: list xfer (verbose)"),
"",
N_("Without argument, this command opens buffer with xfer list.")),
"list|listfull",
&xfer_command_xfer, NULL, NULL);
}