Reword NickServ replies to match ChanServ's friendlier tone

Clearer, more actionable wording across IDENTIFY, LOGOUT, HELP, the
unknown-command hint, and the registration replies, so the two services
read consistently.
This commit is contained in:
Jean Chevronnet 2026-07-12 08:59:36 +00:00
parent c0b41c6af5
commit 727713ee3f
No known key found for this signature in database
2 changed files with 11 additions and 11 deletions

View file

@ -477,11 +477,11 @@ fn reg_reply(reply: &RegReply, outcome: RegOutcome, account: &str) -> Vec<NetAct
RegOutcome::Ok => vec![
// Registering identifies you to the nick right away (drives 900).
NetAction::Metadata { target: uid.clone(), key: "accountname".to_string(), value: nick.clone() },
notice(format!("Nickname \x02{nick}\x02 is now registered.")),
notice(format!("Your nick \x02{nick}\x02 is now registered and you're logged in. Welcome!")),
],
RegOutcome::Exists => vec![notice(format!("Nickname \x02{nick}\x02 is already registered."))],
RegOutcome::RateLimited => vec![notice("Too many registrations, please wait a moment.".to_string())],
RegOutcome::Internal => vec![notice("Registration failed, please try again later.".to_string())],
RegOutcome::Exists => vec![notice(format!("\x02{nick}\x02 is already registered. If it's yours, use \x02IDENTIFY <password>\x02."))],
RegOutcome::RateLimited => vec![notice("Registrations are busy right now. Please try again in a moment.".to_string())],
RegOutcome::Internal => vec![notice("Sorry, that didn't work. Please try again in a moment.".to_string())],
}
}
}