diff options
Diffstat (limited to 'modules/commands')
-rw-r--r-- | modules/commands/bs_assign.cpp | 8 | ||||
-rw-r--r-- | modules/commands/bs_badwords.cpp | 4 | ||||
-rw-r--r-- | modules/commands/bs_bot.cpp | 8 | ||||
-rw-r--r-- | modules/commands/bs_control.cpp | 6 | ||||
-rw-r--r-- | modules/commands/bs_set.cpp | 2 |
5 files changed, 14 insertions, 14 deletions
diff --git a/modules/commands/bs_assign.cpp b/modules/commands/bs_assign.cpp index 82572d0eb..99eff4b2f 100644 --- a/modules/commands/bs_assign.cpp +++ b/modules/commands/bs_assign.cpp @@ -75,7 +75,7 @@ class CommandBSAssign : public Command { this->SendSyntax(source); source.Reply(" "); - source.Reply(_("Assigns a bot pointed out by nick to a channel. You\n" + source.Reply(_("Assigns the specified bot to a channel. You\n" "can then configure the bot for the channel so it fits\n" "your needs.")); return true; @@ -121,7 +121,7 @@ class CommandBSUnassign : public Command if (ci->HasExt("PERSIST") && !ModeManager::FindChannelModeByName("PERM")) { - source.Reply(_("You can not unassign bots while persist is set on the channel.")); + source.Reply(_("You cannot unassign bots while persist is set on the channel.")); return; } @@ -195,9 +195,9 @@ class CommandBSSetNoBot : public Command { this->SendSyntax(source); source.Reply(_(" \n" - "This option makes a channel be unassignable. If a bot\n" + "This option makes a channel unassignable. If a bot\n" "is already assigned to the channel, it is unassigned\n" - "automatically when you enable the option.")); + "automatically when you enable it.")); return true; } }; diff --git a/modules/commands/bs_badwords.cpp b/modules/commands/bs_badwords.cpp index c4155bbc1..6deaa8924 100644 --- a/modules/commands/bs_badwords.cpp +++ b/modules/commands/bs_badwords.cpp @@ -400,7 +400,7 @@ class CommandBSBadwords : public Command if (Anope::ReadOnly) { - source.Reply(_("Sorry, channel bad words list modification is temporarily disabled.")); + source.Reply(_("Sorry, bad words list modification is temporarily disabled.")); return; } @@ -446,7 +446,7 @@ class CommandBSBadwords : public Command " Lists bad words entries numbered 2 through 5 and\n" " 7 through 9.\n" " \n" - "The \002CLEAR\002 command clears all entries of the\n" + "The \002CLEAR\002 command clears all entries from the\n" "bad words list.")); return true; } diff --git a/modules/commands/bs_bot.cpp b/modules/commands/bs_bot.cpp index 69fa7f8fe..d066a49a8 100644 --- a/modules/commands/bs_bot.cpp +++ b/modules/commands/bs_bot.cpp @@ -139,7 +139,7 @@ class CommandBSBot : public Command */ if (nick.equals_cs(bi->nick) && (!user.empty() ? user.equals_cs(bi->GetIdent()) : 1) && (!host.empty() ? host.equals_cs(bi->host) : 1) && (!real.empty() ? real.equals_cs(bi->realname) : 1)) { - source.Reply(_("Old info is equal to the new one.")); + source.Reply(_("The old information is the same as the new information specified.")); return; } @@ -341,13 +341,13 @@ class CommandBSBot : public Command "hostname and realname. Since no integrity checks are done\n" "for these settings, be really careful.\n" " \n" - "\002BOT CHANGE\002 allows to change the nickname, username, hostname\n" - "or realname of a bot without actually having to delete it (and\n" + "\002BOT CHANGE\002 allows you to change the nickname, username, hostname\n" + "or realname of a bot without deleting it (and\n" "all the data associated with it).\n" " \n" "\002BOT DEL\002 removes the given bot from the bot list.\n" " \n" - "\002Note\002: you cannot create a bot that has a nick that is\n" + "\002Note\002: You cannot create a bot with a nick that is\n" "currently registered. If an unregistered user is currently\n" "using the nick, they will be killed.")); return true; 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; } }; diff --git a/modules/commands/bs_set.cpp b/modules/commands/bs_set.cpp index 2d08d9ec6..819ac42b3 100644 --- a/modules/commands/bs_set.cpp +++ b/modules/commands/bs_set.cpp @@ -100,7 +100,7 @@ class CommandBSSetBanExpire : public Command if (Anope::ReadOnly) { - source.Reply(_("Sorry, bot option setting is temporarily disabled.")); + source.Reply(_("Sorry, changing bot options is temporarily disabled.")); return; } |