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_shutdown.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_shutdown.cpp')
-rw-r--r-- | modules/commands/os_shutdown.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/commands/os_shutdown.cpp b/modules/commands/os_shutdown.cpp index a6bb5252b..a5fab15e2 100644 --- a/modules/commands/os_shutdown.cpp +++ b/modules/commands/os_shutdown.cpp @@ -16,7 +16,7 @@ class CommandOSQuit : public Command public: CommandOSQuit(Module *creator) : Command(creator, "operserv/quit", 0, 0) { - this->SetDesc(_("Terminate Services WITHOUT saving")); + this->SetDesc(_("Terminate services WITHOUT saving")); } void Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) override @@ -31,7 +31,7 @@ class CommandOSQuit : public Command { this->SendSyntax(source); source.Reply(" "); - source.Reply(_("Causes Services to do an immediate shutdown; databases are\n" + source.Reply(_("Causes services to do an immediate shutdown; databases are\n" "\002not\002 saved. This command should not be used unless\n" "damage to the in-memory copies of the databases is feared\n" "and they should not be saved.")); @@ -59,7 +59,7 @@ class CommandOSRestart : public Command bool OnHelp(CommandSource &source, const Anope::string &subcommand) override { this->SendSyntax(source); - source.Reply(_("Causes Services to save all databases and then restart\n" + source.Reply(_("Causes services to save all databases and then restart\n" "(i.e. exit and immediately re-run the executable).")); return true; } @@ -86,7 +86,7 @@ class CommandOSShutdown : public Command { this->SendSyntax(source); source.Reply(" "); - source.Reply(_("Causes Services to save all databases and then shut down.")); + source.Reply(_("Causes services to save all databases and then shut down.")); return true; } }; |