summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorZantox <jyoerger10@msn.com>2014-06-25 02:09:43 -0400
committerZantox <jyoerger10@msn.com>2014-06-25 02:09:43 -0400
commit3bea089793ff80b756a63e7cca05947787dd0881 (patch)
tree18c72eaf7164233b386d72e53fbda7308e76aff6 /modules
parent8fecad3039626feb3200a133355b754b7751a35b (diff)
Updated ChanServ Command English Language
Diffstat (limited to 'modules')
-rw-r--r--modules/commands/cs_drop.cpp4
-rw-r--r--modules/commands/cs_entrymsg.cpp12
-rw-r--r--modules/commands/cs_flags.cpp10
-rw-r--r--modules/commands/cs_info.cpp4
-rw-r--r--modules/commands/cs_invite.cpp2
-rw-r--r--modules/commands/cs_kick.cpp2
-rw-r--r--modules/commands/cs_seen.cpp2
-rw-r--r--modules/commands/cs_unban.cpp2
8 files changed, 19 insertions, 19 deletions
diff --git a/modules/commands/cs_drop.cpp b/modules/commands/cs_drop.cpp
index 401573ea2..93ce548cc 100644
--- a/modules/commands/cs_drop.cpp
+++ b/modules/commands/cs_drop.cpp
@@ -71,8 +71,8 @@ class CommandCSDrop : public Command
this->SendSyntax(source);
source.Reply(" ");
if (source.IsServicesOper())
- source.Reply(_("Unregisters the named channel. Only \002Services Operators\002\n"
- "can drop a channel of which they are not the founder."));
+ source.Reply(_("Unregisters the specified channel. Only \002Services Operators\002\n"
+ "can drop a channel of which they are not the founder of."));
else
source.Reply(_("Unregisters the named channel. Can only be used by\n"
"the \002channel founder\002."));
diff --git a/modules/commands/cs_entrymsg.cpp b/modules/commands/cs_entrymsg.cpp
index 4eec3e07d..da14456a5 100644
--- a/modules/commands/cs_entrymsg.cpp
+++ b/modules/commands/cs_entrymsg.cpp
@@ -239,19 +239,19 @@ class CommandEntryMessage : public Command
source.Reply(_("Controls what messages will be sent to users when they join the channel."));
source.Reply(" ");
source.Reply(_("The \002ENTRYMSG ADD\002 command adds the given message to\n"
- "the list of messages to be shown to users when they join\n"
+ "the list of messages shown to users when they join\n"
"the channel."));
source.Reply(" ");
- source.Reply(_("The \002ENTRYMSG DEL\002 command removes the given message from\n"
- "the list of messages to be shown to users when they join\n"
- "the channel. You can remove the message by specifying its number\n"
+ source.Reply(_("The \002ENTRYMSG DEL\002 command removes the specified message from\n"
+ "the list of messages shown to users when they join\n"
+ "the channel. You can a message by specifying its number\n"
"which you can get by listing the messages as explained below."));
source.Reply(" ");
source.Reply(_("The \002ENTRYMSG LIST\002 command displays a listing of messages\n"
- "to be shown to users when they join the channel."));
+ "shown to users when they join the channel."));
source.Reply(" ");
source.Reply(_("The \002ENTRYMSG CLEAR\002 command clears all entries from\n"
- "the list of messages to be shown to users when they join\n"
+ "the list of messages shown to users when they join\n"
"the channel, effectively disabling entry messages."));
return true;
}
diff --git a/modules/commands/cs_flags.cpp b/modules/commands/cs_flags.cpp
index e3f3da978..e3613377f 100644
--- a/modules/commands/cs_flags.cpp
+++ b/modules/commands/cs_flags.cpp
@@ -227,7 +227,7 @@ class CommandCSFlags : public Command
override = true;
else
{
- source.Reply(_("You can not set the \002%c\002 flag."), f);
+ source.Reply(_("You cannot set the \002%c\002 flag."), f);
break;
}
}
@@ -417,19 +417,19 @@ class CommandCSFlags : public Command
source.Reply(_("%s is another way to modify the channel access list, similar to\n"
"the XOP and ACCESS methods."), source.command.c_str());
source.Reply(" ");
- source.Reply(_("The \002MODIFY\002 command allows you to modify the access list. If mask is\n"
- "not already on the access list is it added, then the changes are applied.\n"
+ source.Reply(_("The \002MODIFY\002 command allows you to modify the access list. If the mask is\n"
+ "not already on the access list it is added, then the changes are applied.\n"
"If the mask has no more flags, then the mask is removed from the access list.\n"
"Additionally, you may use +* or -* to add or remove all flags, respectively. You are\n"
"only able to modify the access list if you have the proper permission on the channel,\n"
- "and even then you can only give other people access to up what you already have."));
+ "and even then you can only give other people access to the equivalent of what your access is."));
source.Reply(" ");
source.Reply(_("The \002LIST\002 command allows you to list existing entries on the channel access list.\n"
"If a mask is given, the mask is wildcard matched against all existing entries on the\n"
"access list, and only those entries are returned. If a set of flags is given, only those\n"
"on the access list with the specified flags are returned."));
source.Reply(" ");
- source.Reply(_("The \002CLEAR\002 command clears the channel access list, which requires channel founder."));
+ source.Reply(_("The \002CLEAR\002 command clears the channel access list. This requires channel founder access."));
source.Reply(" ");
source.Reply(_("The available flags are:"));
diff --git a/modules/commands/cs_info.cpp b/modules/commands/cs_info.cpp
index af12aba78..c92f6415d 100644
--- a/modules/commands/cs_info.cpp
+++ b/modules/commands/cs_info.cpp
@@ -16,7 +16,7 @@ class CommandCSInfo : public Command
public:
CommandCSInfo(Module *creator) : Command(creator, "chanserv/info", 1, 2)
{
- this->SetDesc(_("Lists information about the named registered channel"));
+ this->SetDesc(_("Lists information about the specified registered channel"));
this->SetSyntax(_("\037channel\037"));
this->AllowUnregistered(true);
}
@@ -73,7 +73,7 @@ class CommandCSInfo : public Command
{
this->SendSyntax(source);
source.Reply(" ");
- source.Reply(_("Lists information about the named registered channel,\n"
+ source.Reply(_("Lists information about the specified registered channel,\n"
"including its founder, time of registration, and last\n"
"time used. If the user issuing the command has the\n"
"appropriate access for it, then the description, successor,\n"
diff --git a/modules/commands/cs_invite.cpp b/modules/commands/cs_invite.cpp
index 1f39eaf7b..e264a54f1 100644
--- a/modules/commands/cs_invite.cpp
+++ b/modules/commands/cs_invite.cpp
@@ -91,7 +91,7 @@ class CommandCSInvite : public Command
source.Reply(_("Tells %s to invite you or an optionally specified\n"
"nick into the given channel.\n"
" \n"
- "By default, limited to AOPs or those with level 5 and above\n"
+ "By default, limited to AOPs or those with level 5 access and above\n"
"on the channel."), source.service->nick.c_str());
return true;
}
diff --git a/modules/commands/cs_kick.cpp b/modules/commands/cs_kick.cpp
index dded149eb..c95445557 100644
--- a/modules/commands/cs_kick.cpp
+++ b/modules/commands/cs_kick.cpp
@@ -115,7 +115,7 @@ class CommandCSKick : public Command
source.Reply(_("Kicks a specified nick from a channel.\n"
" \n"
"By default, limited to AOPs or those with level 5 access\n"
- "and above on the channel. Channel founders may use masks too."));
+ "and above on the channel. Channel founders can also specify masks."));
return true;
}
};
diff --git a/modules/commands/cs_seen.cpp b/modules/commands/cs_seen.cpp
index 923edb361..7cbc23f43 100644
--- a/modules/commands/cs_seen.cpp
+++ b/modules/commands/cs_seen.cpp
@@ -172,7 +172,7 @@ class CommandOSSeen : public Command
source.Reply(" ");
source.Reply(_("The \002STATS\002 command prints out statistics about stored nicks and memory usage."));
source.Reply(_("The \002CLEAR\002 command lets you clean the database by removing all entries from the\n"
- "entries from the database that were added within \037time\037.\n"
+ "database that were added within \037time\037.\n"
" \n"
"Example:\n"
" %s CLEAR 30m\n"
diff --git a/modules/commands/cs_unban.cpp b/modules/commands/cs_unban.cpp
index 9fd6400a8..de727f8e7 100644
--- a/modules/commands/cs_unban.cpp
+++ b/modules/commands/cs_unban.cpp
@@ -106,7 +106,7 @@ class CommandCSUnban : public Command
"in are removed.\n"
" \n"
"By default, limited to AOPs or those with level 5 and above\n"
- "on the channel."), source.service->nick.c_str());
+ "access on the channel."), source.service->nick.c_str());
return true;
}
};