From 2a1409face3c43d400e0ea145fcf47579f1e7c65 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Mon, 16 Mar 2026 15:16:55 +0000 Subject: [PATCH] Fix a non-translatable string which has been marked as translatable. --- modules/operserv/os_oper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/operserv/os_oper.cpp b/modules/operserv/os_oper.cpp index a0bf9cce8..8a0d894da 100644 --- a/modules/operserv/os_oper.cpp +++ b/modules/operserv/os_oper.cpp @@ -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)