diff options
-rw-r--r-- | data/example.conf | 4 | ||||
-rw-r--r-- | modules/commands/bs_kick.cpp | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/data/example.conf b/data/example.conf index 59f253548..da3b32347 100644 --- a/data/example.conf +++ b/data/example.conf @@ -966,8 +966,8 @@ mail /* * If set, this option enables the mail commands in Services. You may choose * to disable it if you have no Sendmail-compatible mailer installed. Whilst - * this directive (and entire block) is optional, it is required if the - * nickserv:emailregistration is set to yes. + * this directive (and entire block) is optional, it is required if + * nickserv:registration is set to yes. */ usemail = yes diff --git a/modules/commands/bs_kick.cpp b/modules/commands/bs_kick.cpp index 8cf90e5b7..1d7563c38 100644 --- a/modules/commands/bs_kick.cpp +++ b/modules/commands/bs_kick.cpp @@ -1106,7 +1106,7 @@ class BSKick : public Module if (kd && kd->caps) { if (kd->ttb[TTB_CAPS]) - info[_("Caps kicker")] = Anope::printf(_("%s (%d kick(s) to ban; minimum %d/%d%%"), enabled.c_str(), kd->ttb[TTB_CAPS], kd->capsmin, kd->capspercent); + info[_("Caps kicker")] = Anope::printf(_("%s (%d kick(s) to ban; minimum %d/%d%%)"), enabled.c_str(), kd->ttb[TTB_CAPS], kd->capsmin, kd->capspercent); else info[_("Caps kicker")] = Anope::printf(_("%s (minimum %d/%d%%)"), enabled.c_str(), kd->capsmin, kd->capspercent); } @@ -1126,7 +1126,7 @@ class BSKick : public Module if (kd && kd->flood) { if (kd->ttb[TTB_FLOOD]) - info[_("Flood kicker")] = Anope::printf(_("%s (%d kick(s) to ban; %d lines in %ds"), enabled.c_str(), kd->ttb[TTB_FLOOD], kd->floodlines, kd->floodsecs); + info[_("Flood kicker")] = Anope::printf(_("%s (%d kick(s) to ban; %d lines in %ds)"), enabled.c_str(), kd->ttb[TTB_FLOOD], kd->floodlines, kd->floodsecs); else info[_("Flood kicker")] = Anope::printf(_("%s (%d lines in %ds)"), enabled.c_str(), kd->floodlines, kd->floodsecs); } |