1
0
mirror of https://github.com/anope/anope.git synced 2026-07-06 23:03:14 +02:00

Update the dutch language file.

ns_maxemail: Bold code 2 -> 002.
This commit is contained in:
Robby-
2014-03-10 22:30:41 +01:00
parent ca6b3723a9
commit 85834e19dc
2 changed files with 68 additions and 68 deletions
+2 -2
View File
@@ -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;
}