From b7f165a6094454b485767ec0dd98d93ded9172d7 Mon Sep 17 00:00:00 2001 From: Mike Quin Date: Sat, 19 Oct 2019 11:34:15 +0100 Subject: [PATCH] Improve clarity of nick in use message If irssi's preferred nick is in use irssi will issue a whois command and report some information on the current user of the nick. As the "is owned by" wording can be confusing to users of networks with nickname registration, propose rephrasing this to "is in use by". --- src/fe-common/irc/module-formats.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fe-common/irc/module-formats.c b/src/fe-common/irc/module-formats.c index a0f6bd29..e36eed92 100644 --- a/src/fe-common/irc/module-formats.c +++ b/src/fe-common/irc/module-formats.c @@ -98,7 +98,7 @@ FORMAT_REC fecommon_irc_formats[] = { { "no_such_nick", "{nick $0}: No such nick/channel", 1, { 0 } }, { "nick_in_use", "Nick {nick $0} is already in use", 1, { 0 } }, { "nick_unavailable", "Nick {nick $0} is temporarily unavailable", 1, { 0 } }, - { "your_nick_owned", "Your nick is owned by {nick $3} {comment $1@$2}", 4, { 0, 0, 0, 0 } }, + { "your_nick_owned", "Your nick is in use by {nick $3} {comment $1@$2}", 4, { 0, 0, 0, 0 } }, /* ---- */ { NULL, "Who queries", 0 },