1
0
mirror of https://github.com/irssi/irssi.git synced 2024-12-04 14:46:39 -05:00

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".
This commit is contained in:
Mike Quin 2019-10-19 11:34:15 +01:00 committed by GitHub
parent bf3565a720
commit b7f165a609
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -98,7 +98,7 @@ FORMAT_REC fecommon_irc_formats[] = {
{ "no_such_nick", "{nick $0}: No such nick/channel", 1, { 0 } }, { "no_such_nick", "{nick $0}: No such nick/channel", 1, { 0 } },
{ "nick_in_use", "Nick {nick $0} is already in use", 1, { 0 } }, { "nick_in_use", "Nick {nick $0} is already in use", 1, { 0 } },
{ "nick_unavailable", "Nick {nick $0} is temporarily unavailable", 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 }, { NULL, "Who queries", 0 },