diff options
author | Adam <adam@sigterm.info> | 2016-01-23 09:17:44 -0600 |
---|---|---|
committer | Adam <adam@sigterm.info> | 2016-01-23 09:17:44 -0600 |
commit | c4bbef0af84c582a6b483330bc279b40b8409b9d (patch) | |
tree | 06f79e4549b2757d84fcaac3bf27d508d6dd37d8 | |
parent | 7953274a8805fadb2e1b2381343f8bd0d687a364 (diff) | |
parent | d270910aceacc808a9c26e0fd38b2f4047cc462e (diff) |
Merge pull request #143 from staticfox/grammar
hs_group: Fix grammar
-rw-r--r-- | modules/commands/hs_group.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/commands/hs_group.cpp b/modules/commands/hs_group.cpp index 232b2bef3..9924d7836 100644 --- a/modules/commands/hs_group.cpp +++ b/modules/commands/hs_group.cpp @@ -55,9 +55,9 @@ class CommandHSGroup : public Command { this->Sync(na); if (!na->GetVhostIdent().empty()) - source.Reply(_("All vhost's in the group \002%s\002 have been set to \002%s\002@\002%s\002."), source.nc->display.c_str(), na->GetVhostIdent().c_str(), na->GetVhostHost().c_str()); + source.Reply(_("All vhosts in the group \002%s\002 have been set to \002%s\002@\002%s\002."), source.nc->display.c_str(), na->GetVhostIdent().c_str(), na->GetVhostHost().c_str()); else - source.Reply(_("All vhost's in the group \002%s\002 have been set to \002%s\002."), source.nc->display.c_str(), na->GetVhostHost().c_str()); + source.Reply(_("All vhosts in the group \002%s\002 have been set to \002%s\002."), source.nc->display.c_str(), na->GetVhostHost().c_str()); } else source.Reply(HOST_NOT_ASSIGNED); |