summaryrefslogtreecommitdiff
path: root/modules/ns_maxemail.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/ns_maxemail.cpp')
-rw-r--r--modules/ns_maxemail.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/ns_maxemail.cpp b/modules/ns_maxemail.cpp
index 432fe81d0..275cf0991 100644
--- a/modules/ns_maxemail.cpp
+++ b/modules/ns_maxemail.cpp
@@ -25,9 +25,9 @@ class NSMaxEmail : public Module
return false;
if (NSEmailMax == 1)
- source.Reply(_("The email address \2%s\2 has reached its usage limit of 1 user."), email.c_str());
+ 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 \2%s\2 has reached its usage limit of %d users."), email.c_str(), NSEmailMax);
+ source.Reply(_("The email address \002%s\002 has reached its usage limit of %d users."), email.c_str(), NSEmailMax);
return true;
}