mirror of
https://github.com/anope/anope.git
synced 2026-07-08 23:43:13 +02:00
Remove the inconsistently used [auto memo] prefix from some memos.
This commit is contained in:
+15
-15
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Anope\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-05-02 11:10+0100\n"
|
||||
"POT-Creation-Date: 2025-05-02 12:23+0100\n"
|
||||
"PO-Revision-Date: 2025-04-25 13:08+0100\n"
|
||||
"Last-Translator: Sadie Powell <sadie@witchery.services>\n"
|
||||
"Language-Team: English\n"
|
||||
@@ -5739,6 +5739,10 @@ msgstr ""
|
||||
msgid "VHost"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "VHost %s has been requested by %s."
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "VHost for %s removed."
|
||||
msgstr ""
|
||||
@@ -6260,6 +6264,16 @@ msgstr ""
|
||||
msgid "Your password reset request has expired."
|
||||
msgstr ""
|
||||
|
||||
msgid "Your requested vhost has been approved."
|
||||
msgstr ""
|
||||
|
||||
msgid "Your requested vhost has been rejected."
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "Your requested vhost has been rejected. Reason: %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Your vhost has been requested."
|
||||
msgstr ""
|
||||
|
||||
@@ -6375,20 +6389,6 @@ msgstr ""
|
||||
msgid "[Unconfirmed]"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "[auto memo] VHost %s has been requested by %s."
|
||||
msgstr ""
|
||||
|
||||
msgid "[auto memo] Your requested vhost has been approved."
|
||||
msgstr ""
|
||||
|
||||
msgid "[auto memo] Your requested vhost has been rejected."
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "[auto memo] Your requested vhost has been rejected. Reason: %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "[{pattern | channel} [INVISIBLE]]"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user