summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/modules/extra/m_regex_pcre.cpp2
-rw-r--r--src/modules/extra/m_regex_posix.cpp2
-rw-r--r--src/modules/extra/m_regex_re2.cpp2
-rw-r--r--src/modules/extra/m_regex_stdlib.cpp2
-rw-r--r--src/modules/extra/m_regex_tre.cpp2
-rw-r--r--src/modules/m_allowinvite.cpp2
-rw-r--r--src/modules/m_callerid.cpp2
-rw-r--r--src/modules/m_channelban.cpp2
-rw-r--r--src/modules/m_classban.cpp2
-rw-r--r--src/modules/m_gecosban.cpp2
-rw-r--r--src/modules/m_geoban.cpp2
-rw-r--r--src/modules/m_muteban.cpp2
-rw-r--r--src/modules/m_nopartmsg.cpp2
-rw-r--r--src/modules/m_regex_glob.cpp2
-rw-r--r--src/modules/m_serverban.cpp2
15 files changed, 15 insertions, 15 deletions
diff --git a/src/modules/extra/m_regex_pcre.cpp b/src/modules/extra/m_regex_pcre.cpp
index fd5a30cde..cba7025d2 100644
--- a/src/modules/extra/m_regex_pcre.cpp
+++ b/src/modules/extra/m_regex_pcre.cpp
@@ -89,7 +89,7 @@ class ModuleRegexPCRE : public Module
Version GetVersion() CXX11_OVERRIDE
{
- return Version("Provides a regular expression engine which uses the PCRE library.", VF_VENDOR);
+ return Version("Provides the pcre regular expression engine which uses the PCRE library.", VF_VENDOR);
}
};
diff --git a/src/modules/extra/m_regex_posix.cpp b/src/modules/extra/m_regex_posix.cpp
index 19b4f3eaa..d63b83acf 100644
--- a/src/modules/extra/m_regex_posix.cpp
+++ b/src/modules/extra/m_regex_posix.cpp
@@ -86,7 +86,7 @@ class ModuleRegexPOSIX : public Module
Version GetVersion() CXX11_OVERRIDE
{
- return Version("Provides a regular expression engine which uses the POSIX.2 regular expression matching system.", VF_VENDOR);
+ return Version("Provides the posix regular expression engine which uses the POSIX.2 regular expression matching system.", VF_VENDOR);
}
void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
diff --git a/src/modules/extra/m_regex_re2.cpp b/src/modules/extra/m_regex_re2.cpp
index aaeea87ab..35414baf1 100644
--- a/src/modules/extra/m_regex_re2.cpp
+++ b/src/modules/extra/m_regex_re2.cpp
@@ -88,7 +88,7 @@ class ModuleRegexRE2 : public Module
Version GetVersion() CXX11_OVERRIDE
{
- return Version("Provides a regular expression engine which uses the RE2 library.", VF_VENDOR);
+ return Version("Provides the re2 regular expression engine which uses the RE2 library.", VF_VENDOR);
}
};
diff --git a/src/modules/extra/m_regex_stdlib.cpp b/src/modules/extra/m_regex_stdlib.cpp
index b9602fe01..ed1297d71 100644
--- a/src/modules/extra/m_regex_stdlib.cpp
+++ b/src/modules/extra/m_regex_stdlib.cpp
@@ -70,7 +70,7 @@ public:
Version GetVersion() CXX11_OVERRIDE
{
- return Version("Provides a regular expression engine which uses the C++11 std::regex regular expression matching system.", VF_VENDOR);
+ return Version("Provides the stdregex regular expression engine which uses the C++11 std::regex regular expression matching system.", VF_VENDOR);
}
void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
diff --git a/src/modules/extra/m_regex_tre.cpp b/src/modules/extra/m_regex_tre.cpp
index a7002c467..f736699a2 100644
--- a/src/modules/extra/m_regex_tre.cpp
+++ b/src/modules/extra/m_regex_tre.cpp
@@ -92,7 +92,7 @@ class ModuleRegexTRE : public Module
Version GetVersion() CXX11_OVERRIDE
{
- return Version("Provides a regular expression engine which uses the TRE library.", VF_VENDOR);
+ return Version("Provides the tre regular expression engine which uses the TRE library.", VF_VENDOR);
}
};
diff --git a/src/modules/m_allowinvite.cpp b/src/modules/m_allowinvite.cpp
index 0ec9359da..177a9e894 100644
--- a/src/modules/m_allowinvite.cpp
+++ b/src/modules/m_allowinvite.cpp
@@ -63,7 +63,7 @@ class ModuleAllowInvite : public Module
Version GetVersion() CXX11_OVERRIDE
{
- return Version("Adds channel mode A (allowinvite) which allows unprivileged users to use the /INVITE command and extended ban A which bans specific masks from using the /INVITE command.", VF_VENDOR);
+ return Version("Adds channel mode A (allowinvite) which allows unprivileged users to use the /INVITE command and extended ban A: which bans specific masks from using the /INVITE command.", VF_VENDOR);
}
};
diff --git a/src/modules/m_callerid.cpp b/src/modules/m_callerid.cpp
index 2f47912ae..14f7012b6 100644
--- a/src/modules/m_callerid.cpp
+++ b/src/modules/m_callerid.cpp
@@ -398,7 +398,7 @@ public:
Version GetVersion() CXX11_OVERRIDE
{
- return Version("Provides user mode g (bot) which allows users to require that other users are on their whitelist before messaging them.", VF_COMMON | VF_VENDOR);
+ return Version("Provides user mode g (callerid) which allows users to require that other users are on their whitelist before messaging them.", VF_COMMON | VF_VENDOR);
}
void On005Numeric(std::map<std::string, std::string>& tokens) CXX11_OVERRIDE
diff --git a/src/modules/m_channelban.cpp b/src/modules/m_channelban.cpp
index ea31e90dc..fbbc1a202 100644
--- a/src/modules/m_channelban.cpp
+++ b/src/modules/m_channelban.cpp
@@ -30,7 +30,7 @@ class ModuleBadChannelExtban : public Module
public:
Version GetVersion() CXX11_OVERRIDE
{
- return Version("Adds the j: extended ban which checks whether users are in a channel matching the specified glob pattern.", VF_OPTCOMMON|VF_VENDOR);
+ return Version("Adds extended ban j: which checks whether users are in a channel matching the specified glob pattern.", VF_OPTCOMMON|VF_VENDOR);
}
ModResult OnCheckBan(User *user, Channel *c, const std::string& mask) CXX11_OVERRIDE
diff --git a/src/modules/m_classban.cpp b/src/modules/m_classban.cpp
index b2cbb1e59..a43a256ec 100644
--- a/src/modules/m_classban.cpp
+++ b/src/modules/m_classban.cpp
@@ -55,7 +55,7 @@ class ModuleClassBan : public Module
Version GetVersion() CXX11_OVERRIDE
{
- return Version("Adds the n: extended ban which check whether users are in a connect class matching the specified glob pattern.", VF_VENDOR | VF_OPTCOMMON);
+ return Version("Adds extended ban n: which check whether users are in a connect class matching the specified glob pattern.", VF_VENDOR | VF_OPTCOMMON);
}
};
diff --git a/src/modules/m_gecosban.cpp b/src/modules/m_gecosban.cpp
index 896eaaacf..6b14d9134 100644
--- a/src/modules/m_gecosban.cpp
+++ b/src/modules/m_gecosban.cpp
@@ -30,7 +30,7 @@ class ModuleGecosBan : public Module
public:
Version GetVersion() CXX11_OVERRIDE
{
- return Version("Adds the r: extended ban which checks whether users have a real name (gecos) matching the specified glob pattern.", VF_OPTCOMMON|VF_VENDOR);
+ return Version("Adds extended ban r: which checks whether users have a real name (gecos) matching the specified glob pattern.", VF_OPTCOMMON|VF_VENDOR);
}
ModResult OnCheckBan(User *user, Channel *c, const std::string& mask) CXX11_OVERRIDE
diff --git a/src/modules/m_geoban.cpp b/src/modules/m_geoban.cpp
index 483c5a769..49d309004 100644
--- a/src/modules/m_geoban.cpp
+++ b/src/modules/m_geoban.cpp
@@ -44,7 +44,7 @@ class ModuleGeoBan
Version GetVersion() CXX11_OVERRIDE
{
- return Version("Adds extended ban G which matches against two letter country codes.", VF_OPTCOMMON|VF_VENDOR);
+ return Version("Adds extended ban G: which matches against two letter country codes.", VF_OPTCOMMON|VF_VENDOR);
}
void On005Numeric(std::map<std::string, std::string>& tokens) CXX11_OVERRIDE
diff --git a/src/modules/m_muteban.cpp b/src/modules/m_muteban.cpp
index 13150b0d0..e0be4c647 100644
--- a/src/modules/m_muteban.cpp
+++ b/src/modules/m_muteban.cpp
@@ -46,7 +46,7 @@ class ModuleQuietBan
Version GetVersion() CXX11_OVERRIDE
{
- return Version("Adds extended ban m which bans specific masks from speaking in a channel.", VF_OPTCOMMON|VF_VENDOR);
+ return Version("Adds extended ban m: which bans specific masks from speaking in a channel.", VF_OPTCOMMON|VF_VENDOR);
}
ModResult HandleMessage(User* user, const MessageTarget& target, bool& echo_original)
diff --git a/src/modules/m_nopartmsg.cpp b/src/modules/m_nopartmsg.cpp
index bd738a2da..d75ecc7b9 100644
--- a/src/modules/m_nopartmsg.cpp
+++ b/src/modules/m_nopartmsg.cpp
@@ -30,7 +30,7 @@ class ModulePartMsgBan : public Module
public:
Version GetVersion() CXX11_OVERRIDE
{
- return Version("Adds the p: extended ban which blocks the part message of matching users.", VF_OPTCOMMON|VF_VENDOR);
+ return Version("Adds extended ban p: which blocks the part message of matching users.", VF_OPTCOMMON|VF_VENDOR);
}
void OnUserPart(Membership* memb, std::string &partmessage, CUList& excepts) CXX11_OVERRIDE
diff --git a/src/modules/m_regex_glob.cpp b/src/modules/m_regex_glob.cpp
index 1b62bbebb..cd1887073 100644
--- a/src/modules/m_regex_glob.cpp
+++ b/src/modules/m_regex_glob.cpp
@@ -61,7 +61,7 @@ public:
Version GetVersion() CXX11_OVERRIDE
{
- return Version("Provides a regular expression engine which uses the built-in glob matching system.", VF_VENDOR);
+ return Version("Provides the glob regular expression engine which uses the built-in glob matching system.", VF_VENDOR);
}
};
diff --git a/src/modules/m_serverban.cpp b/src/modules/m_serverban.cpp
index 405703f84..7a59ae021 100644
--- a/src/modules/m_serverban.cpp
+++ b/src/modules/m_serverban.cpp
@@ -30,7 +30,7 @@ class ModuleServerBan : public Module
public:
Version GetVersion() CXX11_OVERRIDE
{
- return Version("Adds the s: extended ban which check whether users are on a server matching the specified glob pattern.", VF_OPTCOMMON|VF_VENDOR);
+ return Version("Adds extended ban s: which check whether users are on a server matching the specified glob pattern.", VF_OPTCOMMON|VF_VENDOR);
}
ModResult OnCheckBan(User *user, Channel *c, const std::string& mask) CXX11_OVERRIDE