summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/botserv/bs_badwords.cpp6
-rw-r--r--modules/chanserv/cs_access.cpp18
-rw-r--r--modules/chanserv/cs_akick.cpp6
-rw-r--r--modules/chanserv/cs_drop.cpp4
-rw-r--r--modules/chanserv/cs_register.cpp2
-rw-r--r--modules/chanserv/cs_set.cpp4
-rw-r--r--modules/hostserv/hs_set.cpp4
-rw-r--r--modules/memoserv/ms_list.cpp2
-rw-r--r--modules/memoserv/ms_read.cpp2
-rw-r--r--modules/memoserv/ms_set.cpp10
-rw-r--r--modules/nickserv/ns_identify.cpp4
-rw-r--r--modules/nickserv/ns_info.cpp4
-rw-r--r--modules/nickserv/ns_list.cpp4
-rw-r--r--modules/nickserv/ns_resetpass.cpp2
-rw-r--r--modules/nickserv/ns_set.cpp2
-rw-r--r--modules/operserv/os_akill.cpp4
-rw-r--r--modules/operserv/os_jupe.cpp2
-rw-r--r--modules/operserv/os_news.cpp14
-rw-r--r--modules/operserv/os_set.cpp6
-rw-r--r--modules/operserv/os_shutdown.cpp2
-rw-r--r--modules/operserv/os_sxline.cpp12
21 files changed, 57 insertions, 57 deletions
diff --git a/modules/botserv/bs_badwords.cpp b/modules/botserv/bs_badwords.cpp
index a8980066a..6f4d48302 100644
--- a/modules/botserv/bs_badwords.cpp
+++ b/modules/botserv/bs_badwords.cpp
@@ -463,12 +463,12 @@ public:
"be issued every time \037word\037 is said by a user."
"\n\n"
"The \002DEL\002 command removes the given word from the "
- "bad words list. If a list of entry numbers is given, those "
+ "bad words list. If a list of entry numbers is given, those "
"entries are deleted. (See the example for LIST below.)"
"\n\n"
- "The \002LIST\002 command displays the bad words list. If "
+ "The \002LIST\002 command displays the bad words list. If "
"a wildcard mask is given, only those entries matching the "
- "mask are displayed. If a list of entry numbers is given, "
+ "mask are displayed. If a list of entry numbers is given, "
"only those entries are shown; for example:\n"
" \002#channel\032LIST\0322-5,7-9\002\n"
" Lists bad words entries numbered 2 through 5 and\n"
diff --git a/modules/chanserv/cs_access.cpp b/modules/chanserv/cs_access.cpp
index e4ab95358..bba3b602c 100644
--- a/modules/chanserv/cs_access.cpp
+++ b/modules/chanserv/cs_access.cpp
@@ -569,9 +569,9 @@ public:
this->SendSyntax(source);
source.Reply(" ");
source.Reply(_(
- "Maintains the \002access list\002 for a channel. The access "
+ "Maintains the \002access list\002 for a channel. The access "
"list specifies which users are allowed chanop status or "
- "access to %s commands on the channel. Different "
+ "access to %s commands on the channel. Different "
"user levels allow for access to different subsets of "
"privileges. Any registered user not on the access list has "
"a user level of 0, and any unregistered user has a user level "
@@ -580,7 +580,7 @@ public:
"The \002%s\032ADD\002 command adds the given mask to the "
"access list with the given user level; if the mask is "
"already present on the list, its access level is changed to "
- "the level specified in the command. The \037level\037 specified "
+ "the level specified in the command. The \037level\037 specified "
"may be a numerical level or the name of a privilege (eg AUTOOP). "
"When a user joins the channel the access they receive is from the "
"highest level entry in the access list."
@@ -599,14 +599,14 @@ public:
source.Reply(" ");
source.Reply(_(
"The \002%s\032DEL\002 command removes the given nick from the "
- "access list. If a list of entry numbers is given, those "
+ "access list. If a list of entry numbers is given, those "
"entries are deleted. (See the example for LIST below.) "
"You may remove yourself from an access list, even if you "
"do not have access to modify that list otherwise."
"\n\n"
- "The \002%s\032LIST\002 command displays the access list. If "
+ "The \002%s\032LIST\002 command displays the access list. If "
"a wildcard mask is given, only those entries matching the "
- "mask are displayed. If a list of entry numbers is given, "
+ "mask are displayed. If a list of entry numbers is given, "
"only those entries are shown; for example:\n"
" \002%s\032#channel\032LIST\0322-5,7-9\002\n"
" Lists access entries numbered 2 through 5 and\n"
@@ -672,7 +672,7 @@ class CommandCSLevels final
Privilege *p = PrivilegeManager::FindPrivilege(what);
if (p == NULL)
{
- source.Reply(_("Setting \002%s\002 not known. Type \002%s\032LEVELS\002 for a list of valid settings."),
+ source.Reply(_("Setting \002%s\002 not known. Type \002%s\032LEVELS\002 for a list of valid settings."),
what.c_str(), source.service->GetQueryCommand("generic/help").c_str());
}
else
@@ -715,7 +715,7 @@ class CommandCSLevels final
return;
}
- source.Reply(_("Setting \002%s\002 not known. Type \002%s\032LEVELS\002 for a list of valid settings."),
+ source.Reply(_("Setting \002%s\002 not known. Type \002%s\032LEVELS\002 for a list of valid settings."),
what.c_str(), source.service->GetQueryCommand("generic/help").c_str());
}
@@ -847,7 +847,7 @@ public:
source.Reply(" ");
source.Reply(_(
"The \002%s\002 command allows fine control over the meaning of "
- "the numeric access levels used for channels. With this "
+ "the numeric access levels used for channels. With this "
"command, you can define the access level required for most "
"of %s's functions. (The \002SET\032FOUNDER\002 and this command "
"are always restricted to the channel founder)."
diff --git a/modules/chanserv/cs_akick.cpp b/modules/chanserv/cs_akick.cpp
index a7b7506b4..81d667997 100644
--- a/modules/chanserv/cs_akick.cpp
+++ b/modules/chanserv/cs_akick.cpp
@@ -501,13 +501,13 @@ public:
this->SendSyntax(source);
source.Reply(" ");
source.Reply(_(
- "Maintains the \002AutoKick list\002 for a channel. If a user "
+ "Maintains the \002AutoKick list\002 for a channel. If a user "
"on the AutoKick list attempts to join the channel, "
"%s will ban that user from the channel, then kick "
"the user."
"\n\n"
"The \002%s\032ADD\002 command adds the given nick or usermask "
- "to the AutoKick list. If a \037reason\037 is given with "
+ "to the AutoKick list. If a \037reason\037 is given with "
"the command, that reason will be used when the user is "
"kicked; if not, the default reason is \"User has been "
"banned from the channel\". "
@@ -516,7 +516,7 @@ public:
"All users within that nickgroup will then be akicked. "
"\n\n"
"The \002%s\032DEL\002 command removes the given nick or mask "
- "from the AutoKick list. It does not, however, remove any "
+ "from the AutoKick list. It does not, however, remove any "
"bans placed by an AutoKick; those must be removed "
"manually."
"\n\n"
diff --git a/modules/chanserv/cs_drop.cpp b/modules/chanserv/cs_drop.cpp
index 7e513b340..3159bb5e1 100644
--- a/modules/chanserv/cs_drop.cpp
+++ b/modules/chanserv/cs_drop.cpp
@@ -90,14 +90,14 @@ public:
if (source.IsServicesOper())
{
source.Reply(_(
- "Unregisters the specified channel. Only \002Services Operators\002 "
+ "Unregisters the specified channel. Only \002Services Operators\002 "
"can drop a channel of which they are not the founder of."
));
}
else
{
source.Reply(_(
- "Unregisters the named channel. Can only be used by "
+ "Unregisters the named channel. Can only be used by "
"the \002channel founder\002."
));
}
diff --git a/modules/chanserv/cs_register.cpp b/modules/chanserv/cs_register.cpp
index f206aea8b..feb180910 100644
--- a/modules/chanserv/cs_register.cpp
+++ b/modules/chanserv/cs_register.cpp
@@ -85,7 +85,7 @@ public:
this->SendSyntax(source);
source.Reply(" ");
source.Reply(_(
- "Registers a channel in the %s database. In order "
+ "Registers a channel in the %s database. In order "
"to use this command, you must first be a channel operator "
"on the channel you're trying to register. "
"The description, which is optional, is a "
diff --git a/modules/chanserv/cs_set.cpp b/modules/chanserv/cs_set.cpp
index 9cc41a715..d3236ea77 100644
--- a/modules/chanserv/cs_set.cpp
+++ b/modules/chanserv/cs_set.cpp
@@ -912,7 +912,7 @@ public:
source.Reply(" ");
source.Reply(_(
"Enables or disables signed kicks for a "
- "channel. When \002SIGNKICK\002 is set, kicks issued with "
+ "channel. When \002SIGNKICK\002 is set, kicks issued with "
"the \002KICK\002 command will have the nick that used the "
"command in their reason."
"\n\n"
@@ -1093,7 +1093,7 @@ public:
this->SendSyntax(source);
source.Reply(" ");
source.Reply(_(
- "Sets whether the given channel will expire. Setting this "
+ "Sets whether the given channel will expire. Setting this "
"to ON prevents the channel from expiring."
));
return true;
diff --git a/modules/hostserv/hs_set.cpp b/modules/hostserv/hs_set.cpp
index 1de34b5a3..a86d2d8d3 100644
--- a/modules/hostserv/hs_set.cpp
+++ b/modules/hostserv/hs_set.cpp
@@ -96,7 +96,7 @@ public:
source.Reply(" ");
source.Reply(_(
"Sets the vhost for the given nick to that of the given "
- "hostmask. If your IRCD supports vidents, then using "
+ "hostmask. If your IRCD supports vidents, then using "
"SET <nick> <ident>@<hostmask> set idents for users as "
"well as vhosts."
));
@@ -202,7 +202,7 @@ public:
source.Reply(" ");
source.Reply(_(
"Sets the vhost for all nicks in the same group as that "
- "of the given nick. If your IRCD supports vidents, then "
+ "of the given nick. If your IRCD supports vidents, then "
"using SETALL <nick> <ident>@<hostmask> will set idents "
"for users as well as vhosts."
"\n\n"
diff --git a/modules/memoserv/ms_list.cpp b/modules/memoserv/ms_list.cpp
index d7926b39f..2570894ef 100644
--- a/modules/memoserv/ms_list.cpp
+++ b/modules/memoserv/ms_list.cpp
@@ -142,7 +142,7 @@ public:
this->SendSyntax(source);
source.Reply(" ");
source.Reply(_(
- "Lists any memos you currently have. With \002NEW\002, lists only "
+ "Lists any memos you currently have. With \002NEW\002, lists only "
"new (unread) memos. Unread memos are marked with a \"*\" "
"to the left of the memo number. You can also specify a list "
"of numbers, as in the example below:\n"
diff --git a/modules/memoserv/ms_read.cpp b/modules/memoserv/ms_read.cpp
index 4fec8cdb8..ff3886818 100644
--- a/modules/memoserv/ms_read.cpp
+++ b/modules/memoserv/ms_read.cpp
@@ -201,7 +201,7 @@ public:
source.Reply(_(
"Sends you the text of the memos specified. If LAST is "
"given, sends you the memo you most recently received. If "
- "NEW is given, sends you all of your new memos. If ALL is "
+ "NEW is given, sends you all of your new memos. If ALL is "
"given, sends you all of your memos. Otherwise, sends you "
"memo number \037num\037. You can also give a list of numbers, "
"as in this example:"
diff --git a/modules/memoserv/ms_set.cpp b/modules/memoserv/ms_set.cpp
index f1bd798af..fd0e7a0f4 100644
--- a/modules/memoserv/ms_set.cpp
+++ b/modules/memoserv/ms_set.cpp
@@ -269,19 +269,19 @@ public:
"Syntax: \002LIMIT [\037user\037 | \037channel\037] {\037limit\037 | NONE} [HARD]\002"
"\n\n"
"Sets the maximum number of memos a user or channel is "
- "allowed to have. Setting the limit to 0 prevents the user "
+ "allowed to have. Setting the limit to 0 prevents the user "
"from receiving any memos; setting it to \002NONE\002 allows the "
- "user to receive and keep as many memos as they want. If "
+ "user to receive and keep as many memos as they want. If "
"you do not give a nickname or channel, your own limit is "
"set."
"\n\n"
- "Adding \002HARD\002 prevents the user from changing the limit. Not "
+ "Adding \002HARD\002 prevents the user from changing the limit. Not "
"adding \002HARD\002 has the opposite effect, allowing the user to "
"change the limit (even if a previous limit was set with "
"\002HARD\002)."
"\n\n"
"This use of the \002SET\032LIMIT\002 command is limited to \002Services "
- "Operators\002. Other users may only enter a limit for themselves "
+ "Operators\002. Other users may only enter a limit for themselves "
"or a channel on which they have such privileges, may not "
"remove their limit, may not set a limit above %d, and may "
"not set a hard limit."
@@ -294,7 +294,7 @@ public:
"\n\n"
"Sets the maximum number of memos you (or the given channel) "
"are allowed to have. If you set this to 0, no one will be "
- "able to send any memos to you. However, you cannot set "
+ "able to send any memos to you. However, you cannot set "
"this any higher than %d."
),
max_memos);
diff --git a/modules/nickserv/ns_identify.cpp b/modules/nickserv/ns_identify.cpp
index 94ca476ae..cd51d1de5 100644
--- a/modules/nickserv/ns_identify.cpp
+++ b/modules/nickserv/ns_identify.cpp
@@ -113,8 +113,8 @@ public:
source.Reply(" ");
source.Reply(_(
"Tells %s that you are really the owner of this "
- "nick. Many commands require you to authenticate yourself "
- "with this command before you use them. The password "
+ "nick. Many commands require you to authenticate yourself "
+ "with this command before you use them. The password "
"should be the same one you sent with the \002REGISTER\002 "
"command."
),
diff --git a/modules/nickserv/ns_info.cpp b/modules/nickserv/ns_info.cpp
index 254a928ac..7c436b7dc 100644
--- a/modules/nickserv/ns_info.cpp
+++ b/modules/nickserv/ns_info.cpp
@@ -251,7 +251,7 @@ public:
source.Reply(_(
"Allows you to prevent certain pieces of information from "
"being displayed when someone does a %s\032\002INFO\002 on your "
- "nick. You can hide your email address\032(\002EMAIL\002), last seen "
+ "nick. You can hide your email address\032(\002EMAIL\002), last seen "
"user@host mask (\002USERMASK\002), your services access status "
"(\002STATUS\002) and last quit message (\002QUIT\002). "
"The second parameter specifies whether the information should "
@@ -284,7 +284,7 @@ public:
source.Reply(_(
"Allows you to prevent certain pieces of information from "
"being displayed when someone does a %s\032\002INFO\002 on the "
- "nick. You can hide the email address (\002EMAIL\002), last seen "
+ "nick. You can hide the email address (\002EMAIL\002), last seen "
"user@host mask (\002USERMASK\002), the services access status "
"(\002STATUS\002) and last quit message (\002QUIT\002). "
"The second parameter specifies whether the information should "
diff --git a/modules/nickserv/ns_list.cpp b/modules/nickserv/ns_list.cpp
index 61f05171f..95c620330 100644
--- a/modules/nickserv/ns_list.cpp
+++ b/modules/nickserv/ns_list.cpp
@@ -137,9 +137,9 @@ public:
source.Reply(" ");
source.Reply(_(
"Lists all registered nicknames which match the given "
- "pattern, in \037nick!user@host\037 format. Nicks with the \002PRIVATE\002 "
+ "pattern, in \037nick!user@host\037 format. Nicks with the \002PRIVATE\002 "
"option set will only be displayed to Services Operators with the "
- "proper access. Nicks with the \002NOEXPIRE\002 option set will have "
+ "proper access. Nicks with the \002NOEXPIRE\002 option set will have "
"a \002!\002 prefixed to the nickname for Services Operators to see."
"\n\n"
"Note that a preceding '#' specifies a range."
diff --git a/modules/nickserv/ns_resetpass.cpp b/modules/nickserv/ns_resetpass.cpp
index 94e1c89b2..2cd714889 100644
--- a/modules/nickserv/ns_resetpass.cpp
+++ b/modules/nickserv/ns_resetpass.cpp
@@ -52,7 +52,7 @@ public:
source.Reply(" ");
source.Reply(_(
"Sends a passcode to the nickname with instructions on how to "
- "reset their password. Email must be the email address associated "
+ "reset their password. Email must be the email address associated "
"to the nickname."
));
return true;
diff --git a/modules/nickserv/ns_set.cpp b/modules/nickserv/ns_set.cpp
index 200430988..4c14589ed 100644
--- a/modules/nickserv/ns_set.cpp
+++ b/modules/nickserv/ns_set.cpp
@@ -727,7 +727,7 @@ public:
this->SendSyntax(source);
source.Reply(" ");
source.Reply(_(
- "Sets whether the given nickname will expire. Setting this "
+ "Sets whether the given nickname will expire. Setting this "
"to \002ON\002 prevents the nickname from expiring."
));
return true;
diff --git a/modules/operserv/os_akill.cpp b/modules/operserv/os_akill.cpp
index b6081abba..93a356b7a 100644
--- a/modules/operserv/os_akill.cpp
+++ b/modules/operserv/os_akill.cpp
@@ -471,13 +471,13 @@ public:
source.Reply(" ");
source.Reply(_(
"The \002%s\032DEL\002 command removes the given mask from the "
- "AKILL list if it is present. If a list of entry numbers is "
+ "AKILL list if it is present. If a list of entry numbers is "
"given, those entries are deleted. (See the example for LIST "
"below.)"
"\n\n"
"The \002%s\032LIST\002 command displays the AKILL list. "
"If a wildcard mask is given, only those entries matching the "
- "mask are displayed. If a list of entry numbers is given, "
+ "mask are displayed. If a list of entry numbers is given, "
"only those entries are shown; for example:\n"
" \002%s\032LIST\0322-5,7-9\002\n"
" Lists AKILL entries numbered 2 through 5 and 7\n"
diff --git a/modules/operserv/os_jupe.cpp b/modules/operserv/os_jupe.cpp
index acd5e5112..96f66cdef 100644
--- a/modules/operserv/os_jupe.cpp
+++ b/modules/operserv/os_jupe.cpp
@@ -57,7 +57,7 @@ public:
source.Reply(_(
"Tells services to jupiter a server -- that is, to create "
"a fake \"server\" connected to services which prevents "
- "the real server of that name from connecting. The jupe "
+ "the real server of that name from connecting. The jupe "
"may be removed using a standard \002SQUIT\002. If a reason is "
"given, it is placed in the server information field; "
"otherwise, the server information field will contain the "
diff --git a/modules/operserv/os_news.cpp b/modules/operserv/os_news.cpp
index dc8ac32c7..121c222d5 100644
--- a/modules/operserv/os_news.cpp
+++ b/modules/operserv/os_news.cpp
@@ -328,10 +328,10 @@ public:
this->SendSyntax(source);
source.Reply(" ");
source.Reply(_(
- "Edits or displays the list of logon news messages. When a "
+ "Edits or displays the list of logon news messages. When a "
"user connects to the network, these messages will be sent "
- "to them. However, no more than \002%d\002 messages will be "
- "sent in order to avoid flooding the user. If there are "
+ "to them. However, no more than \002%d\002 messages will be "
+ "sent in order to avoid flooding the user. If there are "
"more news messages, only the most recent will be sent."
),
Config->GetModule(this->owner).Get<unsigned>("newscount", "3"));
@@ -358,10 +358,10 @@ public:
this->SendSyntax(source);
source.Reply(" ");
source.Reply(_(
- "Edits or displays the list of oper news messages. When a "
+ "Edits or displays the list of oper news messages. When a "
"user opers up (with the /OPER command), these messages will "
- "be sent to them. However, no more than \002%d\002 messages will "
- "be sent in order to avoid flooding the user. If there are "
+ "be sent to them. However, no more than \002%d\002 messages will "
+ "be sent in order to avoid flooding the user. If there are "
"more news messages, only the most recent will be sent."
),
Config->GetModule(this->owner).Get<unsigned>("newscount", "3"));
@@ -388,7 +388,7 @@ public:
this->SendSyntax(source);
source.Reply(" ");
source.Reply(_(
- "Edits or displays the list of random news messages. When a "
+ "Edits or displays the list of random news messages. When a "
"user connects to the network, one (and only one) of the "
"random news will be randomly chosen and sent to them."
));
diff --git a/modules/operserv/os_set.cpp b/modules/operserv/os_set.cpp
index 6f2c061ed..16d319ab9 100644
--- a/modules/operserv/os_set.cpp
+++ b/modules/operserv/os_set.cpp
@@ -198,7 +198,7 @@ public:
this->SendSyntax(source);
source.Reply(" ");
source.Reply(_(
- "Sets various global services options. Option names "
+ "Sets various global services options. Option names "
"currently defined are:"
));
@@ -226,9 +226,9 @@ public:
source.Reply(_(
"Syntax: \002READONLY {ON | OFF}\002"
"\n\n"
- "Sets read-only mode on or off. In read-only mode, normal "
+ "Sets read-only mode on or off. In read-only mode, normal "
"users will not be allowed to modify any services data, "
- "including channel access lists, etc. Server operators "
+ "including channel access lists, etc. Server operators "
"with sufficient services privileges will be able to modify "
"Services' AKILL, SQLINE, SNLINE and ignore lists, drop, "
"suspend or forbid nicknames and channels, and manage news, "
diff --git a/modules/operserv/os_shutdown.cpp b/modules/operserv/os_shutdown.cpp
index dc3624242..6d7b778ae 100644
--- a/modules/operserv/os_shutdown.cpp
+++ b/modules/operserv/os_shutdown.cpp
@@ -56,7 +56,7 @@ public:
source.Reply(" ");
source.Reply(_(
"Causes services to do an immediate shutdown; databases are "
- "\002not\002 saved. This command should not be used unless "
+ "\002not\002 saved. This command should not be used unless "
"damage to the in-memory copies of the databases is feared "
"and they should not be saved."
));
diff --git a/modules/operserv/os_sxline.cpp b/modules/operserv/os_sxline.cpp
index c81bd51d4..b49a91bc1 100644
--- a/modules/operserv/os_sxline.cpp
+++ b/modules/operserv/os_sxline.cpp
@@ -449,7 +449,7 @@ public:
this->SendSyntax(source);
source.Reply(" ");
source.Reply(_(
- "Allows Services Operators to manipulate the SNLINE list. If "
+ "Allows Services Operators to manipulate the SNLINE list. If "
"a user with a realname matching an SNLINE mask attempts to "
"connect, services will not allow them to pursue their IRC "
"session."
@@ -460,9 +460,9 @@ public:
"(days), \037h\037 (hours), or \037m\037 (minutes). Combinations (such as "
"\0371h30m\037) are not permitted. If a unit specifier is not "
"included, the default is days (so \037+30\037 by itself means 30 "
- "days). To add an SNLINE which does not expire, use \037+0\037. If the "
+ "days). To add an SNLINE which does not expire, use \037+0\037. If the "
"realname mask to be added starts with a \037+\037, an expiry time must "
- "be given, even if it is the same as the default. The "
+ "be given, even if it is the same as the default. The "
"current SNLINE default expiry time can be found with the "
"\002STATS\032AKILL\002 command. "
"\n\n"
@@ -484,13 +484,13 @@ public:
source.Reply(" ");
source.Reply(_(
"The \002SNLINE\032DEL\002 command removes the given mask from the "
- "SNLINE list if it is present. If a list of entry numbers is "
+ "SNLINE list if it is present. If a list of entry numbers is "
"given, those entries are deleted. (See the example for LIST "
"below.)"
"\n\n"
"The \002SNLINE\032LIST\002 command displays the SNLINE list. "
"If a wildcard mask is given, only those entries matching the "
- "mask are displayed. If a list of entry numbers is given, "
+ "mask are displayed. If a list of entry numbers is given, "
"only those entries are shown; for example:\n"
" \002SNLINE\032LIST\0322-5,7-9\002\n"
" Lists SNLINE entries numbered 2 through 5 and 7\n"
@@ -688,7 +688,7 @@ public:
this->SendSyntax(source);
source.Reply(" ");
source.Reply(_(
- "Allows Services Operators to manipulate the SQLINE list. If "
+ "Allows Services Operators to manipulate the SQLINE list. If "
"a user with a nick matching an SQLINE mask attempts to "
"connect, services will not allow them to pursue their IRC "
"session. "