diff options
author | Sadie Powell <sadie@witchery.services> | 2022-01-04 14:11:07 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2022-01-04 14:11:07 +0000 |
commit | 8eb6a4da717d7670995a47fbd1b5878df88dd206 (patch) | |
tree | 56fa17f935f75b18a6ca11c175b7751294694d8e /modules/commands/os_update.cpp | |
parent | ec7dfb3675973e0e0ec6df69c871797bc94e8413 (diff) |
Update more IRCServices references to reflect the current project.
- If referring to the specific piece of software use "Anope".
- If referring to services in general use "services".
Diffstat (limited to 'modules/commands/os_update.cpp')
-rw-r--r-- | modules/commands/os_update.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/commands/os_update.cpp b/modules/commands/os_update.cpp index 849485181..2175bd32d 100644 --- a/modules/commands/os_update.cpp +++ b/modules/commands/os_update.cpp @@ -16,7 +16,7 @@ class CommandOSUpdate : public Command public: CommandOSUpdate(Module *creator) : Command(creator, "operserv/update", 0, 0) { - this->SetDesc(_("Force the Services databases to be updated immediately")); + this->SetDesc(_("Force the services databases to be updated immediately")); } void Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) override @@ -31,7 +31,7 @@ class CommandOSUpdate : public Command { this->SendSyntax(source); source.Reply(" "); - source.Reply(_("Causes Services to update all database files as soon as you\n" + source.Reply(_("Causes services to update all database files as soon as you\n" "send the command.")); return true; } |