From b3d6a86f68848c868445a92fec548a726e913353 Mon Sep 17 00:00:00 2001 From: cflakes Date: Sun, 27 Jun 2010 01:15:14 +0000 Subject: [PATCH] Changed some text strings in --makeconf, idea & first patch by DGandalf, thanks git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@2045 726aef4b-f618-498e-8847-2d620e286838 --- znc.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/znc.cpp b/znc.cpp index a462dd04..eb95d2fc 100644 --- a/znc.cpp +++ b/znc.cpp @@ -751,6 +751,7 @@ bool CZNC::WriteNewConfig(const CString& sConfigFile) { // User CUtils::PrintMessage(""); CUtils::PrintMessage("Now we need to setup a user..."); + CUtils::PrintMessage("ZNC needs one user per IRC network."); CUtils::PrintMessage(""); bool bFirstUser = true; @@ -870,13 +871,13 @@ bool CZNC::WriteNewConfig(const CString& sConfigFile) { CUtils::GetInput("[" + sHost + "] Password (probably empty)", sPass); #ifdef HAVE_LIBSSL - bSSL = CUtils::GetBoolInput("Does this server use SSL? (probably no)", false); + bSSL = CUtils::GetBoolInput("Does this server use SSL?", false); #endif vsLines.push_back("\tServer = " + sHost + ((bSSL) ? " +" : " ") + CString(uServerPort) + " " + sPass); CUtils::PrintMessage(""); - } while (CUtils::GetBoolInput("Would you like to add another server?", false)); + } while (CUtils::GetBoolInput("Would you like to add another server for this IRC network?", false)); vsLines.push_back(""); CUtils::PrintMessage(""); @@ -900,7 +901,7 @@ bool CZNC::WriteNewConfig(const CString& sConfigFile) { CUtils::PrintMessage(""); bFirstUser = false; - } while (CUtils::GetBoolInput("Would you like to setup another user?", false)); + } while (CUtils::GetBoolInput("Would you like to setup another user (e.g. for connecting to another network)?", false)); // !User CFile File;