diff --git a/docs/MODULES b/docs/MODULES index e22ab3d7d..ed78e73b0 100644 --- a/docs/MODULES +++ b/docs/MODULES @@ -43,7 +43,7 @@ Anope Modules MODLOAD Load a module MODRELOAD Reload a module - MODUNLOAD Un-Load a module + MODUNLOAD Unload a module MODLIST List loaded modules MODINFO Info about a loaded module diff --git a/language/anope.en_US.po b/language/anope.en_US.po index cc9044e1a..d05f7d0c8 100644 --- a/language/anope.en_US.po +++ b/language/anope.en_US.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: Anope\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-25 00:37+0000\n" -"PO-Revision-Date: 2025-11-25 00:37+0000\n" +"POT-Creation-Date: 2025-12-13 15:06+0000\n" +"PO-Revision-Date: 2025-12-13 15:06+0000\n" "Last-Translator: Sadie Powell \n" "Language-Team: English\n" "Language: en_US\n" @@ -5855,9 +5855,6 @@ msgstr "" msgid "Type %sregion to list timezones for a region." msgstr "" -msgid "Un-Load a module" -msgstr "" - #, c-format msgid "Unable to find regex engine %s." msgstr "" @@ -5921,6 +5918,9 @@ msgstr "" msgid "Unknown passwords: %zu" msgstr "" +msgid "Unload a module" +msgstr "" + msgid "Unpooled" msgstr "" diff --git a/modules/operserv/os_module.cpp b/modules/operserv/os_module.cpp index ad7891186..309020966 100644 --- a/modules/operserv/os_module.cpp +++ b/modules/operserv/os_module.cpp @@ -126,7 +126,7 @@ class CommandOSModUnLoad final public: CommandOSModUnLoad(Module *creator) : Command(creator, "operserv/modunload", 1, 1) { - this->SetDesc(_("Un-Load a module")); + this->SetDesc(_("Unload a module")); this->SetSyntax(_("\037modname\037")); }