summaryrefslogtreecommitdiff
path: root/src/plugins/xfer/xfer-chat.c
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2014-01-02 15:21:42 +0100
committerSebastien Helleu <flashcode@flashtux.org>2014-01-02 15:21:42 +0100
commite058d75ce3555a1525c15ef3b477e220506c807d (patch)
tree55b0afb2a44bd53df0b27b49d83170e918999f81 /src/plugins/xfer/xfer-chat.c
parent5668e2ab1228e5e9fea430a2e855287dfad095bf (diff)
downloadweechat-e058d75ce3555a1525c15ef3b477e220506c807d.zip
xfer: add "network" prefix for (dis)connection messages in xfer chat buffer
Diffstat (limited to 'src/plugins/xfer/xfer-chat.c')
-rw-r--r--src/plugins/xfer/xfer-chat.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/plugins/xfer/xfer-chat.c b/src/plugins/xfer/xfer-chat.c
index 99a201c71..cf9b5202b 100644
--- a/src/plugins/xfer/xfer-chat.c
+++ b/src/plugins/xfer/xfer-chat.c
@@ -372,8 +372,9 @@ xfer_chat_open_buffer (struct t_xfer *xfer)
}
weechat_printf (xfer->buffer,
- _("Connected to %s (%ld.%ld.%ld.%ld) via "
- "xfer chat"),
+ _("%s%s: connected to %s (%ld.%ld.%ld.%ld)"),
+ weechat_prefix ("network"),
+ XFER_PLUGIN_NAME,
xfer->remote_nick,
xfer->remote_address >> 24,
(xfer->remote_address >> 16) & 0xff,