1
0
mirror of https://github.com/anope/anope.git synced 2026-07-01 12:46:39 +02:00

Some minor fixes/typos

This commit is contained in:
lethality
2012-10-03 21:22:03 +01:00
parent 69437bb324
commit dcfae6332e
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -121,7 +121,7 @@ class CommandOSLogSearch : public Command
unsigned count = 0;
for (std::list<Anope::string>::iterator it = matches.begin(), it_end = matches.end(); it != it_end; ++it)
source.Reply("#%d: %s", ++count, it->c_str());
source.Reply(_("Showed %d/%d matches for \2%s\2"), replies, found, search_string.c_str());
source.Reply(_("Showed %d/%d matches for \2%s\2"), found, replies, search_string.c_str());
}
bool OnHelp(CommandSource &source, const Anope::string &subcommand) anope_override
@@ -130,7 +130,7 @@ class CommandOSLogSearch : public Command
source.Reply(" ");
source.Reply(_("This command searches the Services logfiles for messages\n"
"that match the given pattern. The day and limit argument\n"
"may be used to specifcy how many days of logs to search\n"
"may be used to specify how many days of logs to search\n"
"and the number of replies to limit to. By default this\n"
"command searches one week of logs, and limits replies\n"
"to 50.\n"
@@ -22,7 +22,7 @@
{END IF}
<tr>
<td>Time registered</td>
<td>{TIME_REGISTERED</td>
<td>{TIME_REGISTERED}</td>
</tr>
<tr>
<td>Last used</td>
+1 -1
View File
@@ -189,7 +189,7 @@ namespace WebPanel
service_reference<Command> cmd("Command", c);
if (!cmd)
{
r["MESSAGSE"] = "Unable to find command " + c;
r["MESSAGES"] = "Unable to find command " + c;
return;
}