summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2025-05-02 12:23:19 +0100
committerSadie Powell <sadie@witchery.services>2025-05-02 12:25:15 +0100
commit89f61ac91bddedb5d18a9a8c81cb95da809d1830 (patch)
tree24cb79406aec550f48e3d4a84396a0a2b1ed29b7 /modules
parentb091184c606a2769800a7c49d03620a456e7fd40 (diff)
Remove the inconsistently used [auto memo] prefix from some memos.
Diffstat (limited to 'modules')
-rw-r--r--modules/hostserv/hs_request.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/hostserv/hs_request.cpp b/modules/hostserv/hs_request.cpp
index 12252e62f..87f8e85b1 100644
--- a/modules/hostserv/hs_request.cpp
+++ b/modules/hostserv/hs_request.cpp
@@ -226,7 +226,7 @@ public:
FOREACH_MOD(OnSetVHost, (na));
if (Config->GetModule(this->owner).Get<bool>("memouser") && memoserv)
- memoserv->Send(source.service->nick, na->nick, _("[auto memo] Your requested vhost has been approved."), true);
+ memoserv->Send(source.service->nick, na->nick, _("Your requested vhost has been approved."), true);
source.Reply(_("VHost for %s has been activated."), na->nick.c_str());
Log(LOG_COMMAND, source, this) << "for " << na->nick << " for vhost " << (!req->ident.empty() ? req->ident + "@" : "") << req->host;
@@ -279,9 +279,9 @@ public:
{
Anope::string message;
if (!reason.empty())
- message = Anope::printf(_("[auto memo] Your requested vhost has been rejected. Reason: %s"), reason.c_str());
+ message = Anope::printf(_("Your requested vhost has been rejected. Reason: %s"), reason.c_str());
else
- message = _("[auto memo] Your requested vhost has been rejected.");
+ message = _("Your requested vhost has been rejected.");
memoserv->Send(source.service->nick, nick, Language::Translate(source.GetAccount(), message.c_str()), true);
}
@@ -404,7 +404,7 @@ static void req_send_memos(Module *me, CommandSource &source, const Anope::strin
if (!na)
continue;
- Anope::string message = Anope::printf(_("[auto memo] VHost \002%s\002 has been requested by %s."), host.c_str(), source.GetNick().c_str());
+ Anope::string message = Anope::printf(_("VHost \002%s\002 has been requested by %s."), host.c_str(), source.GetNick().c_str());
memoserv->Send(source.service->nick, na->nick, message, true);
}