diff options
author | Sadie Powell <sadie@witchery.services> | 2025-03-22 21:04:25 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2025-03-22 21:04:25 +0000 |
commit | a40eaeb2a3ef06921d0e08e7ea7a0886d71d02c9 (patch) | |
tree | 4241b5086bf23d59a816b25b6008b83d3f2ada5e /modules | |
parent | e14a650cb91f4f36259e75602628fde6860c8673 (diff) |
Use a plural form translation for the ns_maxemail error.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/nickserv/ns_maxemail.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/modules/nickserv/ns_maxemail.cpp b/modules/nickserv/ns_maxemail.cpp index 89746c2fa..4b28b84af 100644 --- a/modules/nickserv/ns_maxemail.cpp +++ b/modules/nickserv/ns_maxemail.cpp @@ -45,11 +45,7 @@ class NSMaxEmail final if (this->CountEmail(email, ignoreself ? source.GetAccount() : NULL) < NSEmailMax) return false; - if (NSEmailMax == 1) - source.Reply(_("The email address \002%s\002 has reached its usage limit of 1 user."), email.c_str()); - else - source.Reply(_("The email address \002%s\002 has reached its usage limit of %d users."), email.c_str(), NSEmailMax); - + source.Reply(NSEmailMax, N_("The email address \002%s\002 has reached its usage limit of %u user.", "The email address \002%s\002 has reached its usage limit of %u users."), email.c_str()); return true; } |