1
0
mirror of https://github.com/anope/anope.git synced 2026-06-27 12:56:37 +02:00

minor help output changes, including some confusion in fantasy chars

This commit is contained in:
lethality
2012-06-04 04:50:35 +01:00
parent 437944d416
commit a4bf5ce609
5 changed files with 10 additions and 10 deletions
+2 -2
View File
@@ -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;
}
};
+2 -2
View File
@@ -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());
+2 -2
View File
@@ -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."));
+1 -1
View File
@@ -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;
}
};
+3 -3
View File
@@ -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 &param) anope_override