diff --git a/modules/controlpanel.cpp b/modules/controlpanel.cpp index 06f74bfd..34b359b4 100644 --- a/modules/controlpanel.cpp +++ b/modules/controlpanel.cpp @@ -732,7 +732,7 @@ class CAdminMod : public CModule { } if (!m_pUser->IsAdmin() && !pUser->HasSpaceForNewNetwork()) { - PutStatus("Network number limit reached. Ask an admin to increase the limit for you, or delete few old ones using /znc DelNetwork "); + PutStatus("Network number limit reached. Ask an admin to increase the limit for you, or delete unneeded networks using /znc DelNetwork "); return; } diff --git a/modules/webadmin.cpp b/modules/webadmin.cpp index ae3ad3ee..0f6dd746 100644 --- a/modules/webadmin.cpp +++ b/modules/webadmin.cpp @@ -821,7 +821,7 @@ public: } } else { if (!spSession->IsAdmin() && !pUser->HasSpaceForNewNetwork()) { - WebSock.PrintErrorPage("Network number limit reached. Ask an admin to increase the limit for you, or delete few old ones from Your Settings"); + WebSock.PrintErrorPage("Network number limit reached. Ask an admin to increase the limit for you, or delete unneeded networks from Your Settings."); return true; } diff --git a/src/ClientCommand.cpp b/src/ClientCommand.cpp index 8b1cb53a..b86d2aae 100644 --- a/src/ClientCommand.cpp +++ b/src/ClientCommand.cpp @@ -495,7 +495,7 @@ void CClient::UserCommand(CString& sLine) { " - Detached: " + CString(uNumDetached) + " - Disabled: " + CString(uNumDisabled)); } else if (sCommand.Equals("ADDNETWORK")) { if (!m_pUser->IsAdmin() && !m_pUser->HasSpaceForNewNetwork()) { - PutStatus("Network number limit reached. Ask an admin to increase the limit for you, or delete few old ones using /znc DelNetwork "); + PutStatus("Network number limit reached. Ask an admin to increase the limit for you, or delete unneeded networks using /znc DelNetwork "); return; }