From: Andy Koppe Date: Wed, 18 Aug 2010 17:03:17 +0000 (+0000) Subject: * res.rc (IDD_PREREQ): Say "Resolving Dependencies" instead of X-Git-Tag: release_2.869~158 X-Git-Url: https://cygwin.com/git/?a=commitdiff_plain;h=e9ed14d1b01465272a61afd2ded5a28984c6bf8b;p=cygwin-apps%2Fsetup.git * res.rc (IDD_PREREQ): Say "Resolving Dependencies" instead of "Unmet Dependencies found" * prereq.cc (PrereqPage::OnNext): Tone down message box about missing dependencies. --- diff --git a/ChangeLog b/ChangeLog index bf68457b..6fb05b9e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2010-08-18 Andy Koppe + + * res.rc (IDD_PREREQ): Say "Resolving Dependencies" instead of + "Unmet Dependencies found" + * prereq.cc (PrereqPage::OnNext): Tone down message box about + missing dependencies. + 2010-08-15 Andy Koppe * postinstall.cc (PostInstallResultsPage::OnNext): diff --git a/prereq.cc b/prereq.cc index 3ad2e105..9a8cb260 100644 --- a/prereq.cc +++ b/prereq.cc @@ -97,10 +97,10 @@ PrereqPage::OnNext () { // breakage imminent! danger, danger int res = MessageBox (h, - "If you continue without correcting the listed conflicts, your " - "Cygwin installation will not function properly.\r\n" - "We strongly recommend that you let Setup install the listed packages.\r\n\r\n" - "Are you sure you want to proceed?", + "The listed packages are required for packages depending on them to " + "work. We strongly recommend that you allow Setup to select them." + "\r\n\r\n" + "Are you sure you want to proceed without these packages?", "WARNING - Required Packages Not Selected", MB_YESNO | MB_ICONEXCLAMATION | MB_DEFBUTTON2); if (res == IDNO) diff --git a/res.rc b/res.rc index 9adec1f2..f193eccf 100644 --- a/res.rc +++ b/res.rc @@ -377,13 +377,13 @@ END IDD_PREREQ DIALOG DISCARDABLE 0, 0, SETUP_STANDARD_DIALOG_DIMS STYLE DS_MODALFRAME | DS_3DLOOK | WS_CHILD | WS_VISIBLE | WS_CAPTION | WS_SYSMENU -CAPTION "Cygwin Setup - Resolve Dependencies" +CAPTION "Cygwin Setup - Resolving Dependencies" FONT 8, "MS Shell Dlg" BEGIN CONTROL "",IDC_HEADSEPARATOR,"Static",SS_BLACKFRAME | SS_SUNKEN, 0,28,SETUP_STANDARD_DIALOG_W,1 ICON IDI_CYGWIN,IDC_HEADICON,SETUP_HEADICON_X,0,21,20 - LTEXT "Unmet Dependencies Found",IDC_STATIC_HEADER_TITLE + LTEXT "Resolving Dependencies",IDC_STATIC_HEADER_TITLE ,7,0,258,8,NOT WS_GROUP LTEXT "The following packages are required to satisfy " "dependencies.",IDC_STATIC,21,9,239,16,NOT WS_GROUP