summaryrefslogtreecommitdiff
path: root/os/windows/installer/install.nsi
diff options
context:
space:
mode:
authorduck <me@duck.me.uk>2020-05-05 20:05:40 +0000
committerGitHub <noreply@github.com>2020-05-05 22:05:40 +0200
commite1c85e67a71493aa65e54717f847d21d66593e23 (patch)
treec085749a1007af19a79d962306bc479f2c751688 /os/windows/installer/install.nsi
parent19dc31e0b3fdcf7f8b29b18747870cecacde85df (diff)
downloadopenttd-e1c85e67a71493aa65e54717f847d21d66593e23.tar.xz
Fix #8102: Update Windows installer strings to reference newer Windows version (#8114)
* Fix #8102: Update Windows installer strings to reference versions newer than 7 * Fix 2c53390: Version strings incorrectly capitalised
Diffstat (limited to 'os/windows/installer/install.nsi')
-rw-r--r--os/windows/installer/install.nsi4
1 files changed, 2 insertions, 2 deletions
diff --git a/os/windows/installer/install.nsi b/os/windows/installer/install.nsi
index b6837c559..7b9399228 100644
--- a/os/windows/installer/install.nsi
+++ b/os/windows/installer/install.nsi
@@ -599,12 +599,12 @@ Function CheckWindowsVersion
StrCmp $R0 "win9x" 0 WinNT
ClearErrors
StrCmp ${APPARCH} "win9x" Done 0
- MessageBox MB_YESNO|MB_ICONSTOP "You are trying to install the Windows XP SP3, Vista and 7 version on Windows 95, 98, ME, 2000 and XP without SP3. This is will not work. Please download the correct version. Do you really want to continue?" IDYES Done IDNO Abort
+ MessageBox MB_YESNO|MB_ICONSTOP "You are trying to install the Windows XP SP3 and newer version on Windows 95, 98, ME, 2000, or XP without SP3. This will not work - please download the correct version. Do you really want to continue?" IDYES Done IDNO Abort
GoTo Done
WinNT:
ClearErrors
StrCmp ${APPARCH} "win9x" 0 Done
- MessageBox MB_YESNO|MB_ICONEXCLAMATION "You are trying to install the Windows 95, 98, 2000 and XP without SP3 version on Windows XP SP3, Vista or 7. This is not advised, but will work with reduced capabilities. We suggest that you download the correct version. Do you really want to continue?" IDYES Done IDNO Abort
+ MessageBox MB_YESNO|MB_ICONEXCLAMATION "You are trying to install the Windows 95, 98, 2000 and XP without SP3 version on Windows XP SP3 or newer. This is not advised, but will work with reduced capabilities. We suggest that you download the correct version. Do you really want to continue?" IDYES Done IDNO Abort
Abort:
Quit
Done: