diff --git a/modules/controlpanel.cpp b/modules/controlpanel.cpp index 5fdd05a0..b77d4d3c 100644 --- a/modules/controlpanel.cpp +++ b/modules/controlpanel.cpp @@ -744,7 +744,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 2f1b971b..6c3e8869 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; }