diff options
author | lethality <lethality@anope.org> | 2012-06-04 04:50:35 +0100 |
---|---|---|
committer | lethality <lethality@anope.org> | 2012-06-04 04:50:35 +0100 |
commit | a4bf5ce6096a0d90f9a52feb4cfabbfd2e823290 (patch) | |
tree | 18e02882e9ace92aa1edb16cbc2ac599dd7030d3 | |
parent | 437944d41689b0ab090bada7fba9791086b7e1fe (diff) |
minor help output changes, including some confusion in fantasy chars
-rw-r--r-- | modules/commands/bs_botlist.cpp | 4 | ||||
-rw-r--r-- | modules/commands/cs_set_keeptopic.cpp | 4 | ||||
-rw-r--r-- | modules/commands/cs_set_persist.cpp | 4 | ||||
-rw-r--r-- | modules/commands/cs_set_topiclock.cpp | 2 | ||||
-rw-r--r-- | modules/pseudoclients/botserv.cpp | 6 |
5 files changed, 10 insertions, 10 deletions
diff --git a/modules/commands/bs_botlist.cpp b/modules/commands/bs_botlist.cpp index 68fb7bdfa..9fd8b81f7 100644 --- a/modules/commands/bs_botlist.cpp +++ b/modules/commands/bs_botlist.cpp @@ -65,8 +65,8 @@ class CommandBSBotList : public Command { this->SendSyntax(source); source.Reply(" "); - source.Reply(_("Lists all available bots on this network. Bots prefixed" - "by a * are reserved for IRC operators.")); + source.Reply(_("Lists all available bots on this network.\n" + "Bots prefixed by a * are reserved for IRC operators.")); return true; } }; diff --git a/modules/commands/cs_set_keeptopic.cpp b/modules/commands/cs_set_keeptopic.cpp index 3c9df3f3f..ddb09c4d1 100644 --- a/modules/commands/cs_set_keeptopic.cpp +++ b/modules/commands/cs_set_keeptopic.cpp @@ -58,8 +58,8 @@ class CommandCSSetKeepTopic : public Command { this->SendSyntax(source); source.Reply(" "); - source.Reply(_("Enables or disables the \002topic retention\002 option for a \n" - "channel. When \002topic retention\002 is set, the topic for the\n" + source.Reply(_("Enables or disables the \002topic retention\002 option for a\n" + "channel. When \002%s\002 is set, the topic for the\n" "channel will be remembered by %s even after the\n" "last user leaves the channel, and will be restored the\n" "next time the channel is created."), this->name.c_str(), source.owner->nick.c_str()); diff --git a/modules/commands/cs_set_persist.cpp b/modules/commands/cs_set_persist.cpp index b9d4d2c35..60cc7895d 100644 --- a/modules/commands/cs_set_persist.cpp +++ b/modules/commands/cs_set_persist.cpp @@ -134,7 +134,7 @@ class CommandCSSetPersist : public Command "When persistent is set, the service bot will remain\n" "in the channel when it has emptied of users.\n" " \n" - "If your IRCd does not a permanent (persistent) channel\n" + "If your IRCd does not have a permanent (persistent) channel\n" "mode you must have a service bot in your channel to\n" "set persist on, and it can not be unassigned while persist\n" "is on.\n" @@ -145,7 +145,7 @@ class CommandCSSetPersist : public Command "it has been set off).\n" " \n" "If your IRCd has a permanent (persistent) channel mode\n" - "and is is set or unset (for any reason, including MLOCK),\n" + "and it is set or unset (for any reason, including MODE LOCK),\n" "persist is automatically set and unset for the channel aswell.\n" "Additionally, services will set or unset this mode when you\n" "set persist on or off.")); diff --git a/modules/commands/cs_set_topiclock.cpp b/modules/commands/cs_set_topiclock.cpp index 3a3c7d47c..911c8b463 100644 --- a/modules/commands/cs_set_topiclock.cpp +++ b/modules/commands/cs_set_topiclock.cpp @@ -60,7 +60,7 @@ class CommandCSSetTopicLock : public Command source.Reply(" "); source.Reply(_("Enables or disables the \002topic lock\002 option for a channel.\n" "When \002topic lock\002 is set, the channel topic will be unchangable\n" - " except via the \002TOPIC\002 command.")); + "except via the \002TOPIC\002 command.")); return true; } }; diff --git a/modules/pseudoclients/botserv.cpp b/modules/pseudoclients/botserv.cpp index 07006f8bf..beab46b23 100644 --- a/modules/pseudoclients/botserv.cpp +++ b/modules/pseudoclients/botserv.cpp @@ -194,9 +194,9 @@ class BotServCore : public Module "Bot will join a channel whenever there is at least\n" "\002%d\002 user(s) on it."), Config->BSMinUsers); if (!Config->BSFantasyCharacter.empty()) - source.Reply(_("Additionally, all %s commands\n" - "can be used if fantasy is enabled by prefixing the command\n" - "name with one of the following characters: %s."), Config->ChanServ.c_str(), Config->BSFantasyCharacter.c_str()); + source.Reply(_("Additionally, all %s commands can be used if fantasy\n" + "is enabled by prefixing the command name with one of\n" + "the following characters: %s"), Config->ChanServ.c_str(), Config->BSFantasyCharacter.c_str()); } EventReturn OnChannelModeSet(Channel *c, User *setter, ChannelModeName Name, const Anope::string ¶m) anope_override |