1
0
mirror of https://github.com/anope/anope.git synced 2026-06-12 17:04:47 +02:00

Fix a non-translatable string which has been marked as translatable.

This commit is contained in:
Sadie Powell
2026-03-16 15:16:55 +00:00
parent f111e3b3ec
commit 2a1409face
+1 -1
View File
@@ -169,7 +169,7 @@ public:
if (!nc->o)
continue;
source.Reply(_("%-8s %s"), nc->o->name.c_str(), nc->o->ot->GetName().c_str());
source.Reply("%-8s %s", nc->o->name.c_str(), nc->o->ot->GetName().c_str());
if (std::find(Config->Opers.begin(), Config->Opers.end(), nc->o) != Config->Opers.end())
source.Reply(_(" This oper is configured in the configuration file."));
for (auto *u : nc->users)