From 72010cd1a96deb0aa26e332293e2ffaf519f79c3 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Tue, 24 Jun 2025 13:58:47 +0100 Subject: [PATCH] Fix messages that say IRC Operator when they mean Services Operator. --- data/global.example.conf | 2 +- data/modules.example.conf | 4 ++-- data/operserv.example.conf | 2 +- language/anope.en_US.po | 8 ++++---- modules/botserv/bs_set.cpp | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/data/global.example.conf b/data/global.example.conf index b2486555b..1c998aaa2 100644 --- a/data/global.example.conf +++ b/data/global.example.conf @@ -93,7 +93,7 @@ module #globaloncycleup = "Services are now back online - have a nice day" /* - * If set, Anope will hide the IRC Operator's nick in a global + * If set, Anope will hide the Services Operator's nick in a global * message/notice. * * This directive is optional. diff --git a/data/modules.example.conf b/data/modules.example.conf index 1acbf9b8c..e048fa259 100644 --- a/data/modules.example.conf +++ b/data/modules.example.conf @@ -723,8 +723,8 @@ module /* * sql_oper * - * This module allows granting users services operator privileges and possibly IRC Operator - * privileges based on an external SQL database using a custom query. + * This module allows granting users Services Operator privileges based on an + * external SQL database using a custom query. */ #module { diff --git a/data/operserv.example.conf b/data/operserv.example.conf index 87d9bea93..ddd2122b5 100644 --- a/data/operserv.example.conf +++ b/data/operserv.example.conf @@ -111,7 +111,7 @@ module killonsqline = yes /* - * Adds the nickname of the IRC Operator issuing an AKILL to the kill reason. + * Adds the nickname of the Services Operator issuing an AKILL to the kill reason. * * This directive is optional. */ diff --git a/language/anope.en_US.po b/language/anope.en_US.po index ef54df3d8..8f143730a 100644 --- a/language/anope.en_US.po +++ b/language/anope.en_US.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Anope\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-06-22 15:21+0100\n" -"PO-Revision-Date: 2025-06-22 15:21+0100\n" +"POT-Creation-Date: 2025-06-24 13:55+0100\n" +"PO-Revision-Date: 2025-06-24 13:55+0100\n" "Last-Translator: Sadie Powell \n" "Language-Team: English\n" "Language: en_US\n" @@ -4069,7 +4069,7 @@ msgstr "" msgid "Pooled/Not Active" msgstr "" -msgid "Prevent a bot from being assigned by non IRC operators" +msgid "Prevent a bot from being assigned by non Services Operators" msgstr "" msgid "Prevent a bot from being assigned to a channel" @@ -5509,7 +5509,7 @@ msgstr "" msgid "This option makes a channel unassignable. If a bot is already assigned to the channel, it is unassigned automatically when you enable it." msgstr "" -msgid "This option prevents a bot from being assigned to a channel by users that aren't IRC Operators." +msgid "This option prevents a bot from being assigned to a channel by users that aren't Services Operators." msgstr "" #, c-format diff --git a/modules/botserv/bs_set.cpp b/modules/botserv/bs_set.cpp index a7c6ba414..837fc793e 100644 --- a/modules/botserv/bs_set.cpp +++ b/modules/botserv/bs_set.cpp @@ -173,7 +173,7 @@ class CommandBSSetPrivate final public: CommandBSSetPrivate(Module *creator, const Anope::string &sname = "botserv/set/private") : Command(creator, sname, 2, 2) { - this->SetDesc(_("Prevent a bot from being assigned by non IRC operators")); + this->SetDesc(_("Prevent a bot from being assigned by non Services Operators")); this->SetSyntax(_("\037botname\037 {\037ON|OFF\037}")); } @@ -214,7 +214,7 @@ public: source.Reply(" "); source.Reply(_( "This option prevents a bot from being assigned to a " - "channel by users that aren't IRC Operators." + "channel by users that aren't Services Operators." )); return true; }