summaryrefslogtreecommitdiff
path: root/modules/commands/bs_control.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/commands/bs_control.cpp')
-rw-r--r--modules/commands/bs_control.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/commands/bs_control.cpp b/modules/commands/bs_control.cpp
index 0307c6abf..5111a9551 100644
--- a/modules/commands/bs_control.cpp
+++ b/modules/commands/bs_control.cpp
@@ -16,7 +16,7 @@ class CommandBSSay : public Command
public:
CommandBSSay(Module *creator) : Command(creator, "botserv/say", 2, 2)
{
- this->SetDesc(_("Makes the bot say the given text on the given channel"));
+ this->SetDesc(_("Makes the bot say the specified text on the specified channel"));
this->SetSyntax(_("\037channel\037 \037text\037"));
}
@@ -66,7 +66,7 @@ class CommandBSSay : public Command
{
this->SendSyntax(source);
source.Reply(" ");
- source.Reply(_("Makes the bot say the given text on the given channel."));
+ source.Reply(_("Makes the bot say the specified text on the specified channel."));
return true;
}
};
@@ -125,7 +125,7 @@ class CommandBSAct : public Command
this->SendSyntax(source);
source.Reply(" ");
source.Reply(_("Makes the bot do the equivalent of a \"/me\" command\n"
- "on the given channel using the given text."));
+ "on the specified channel using the specified text."));
return true;
}
};