From d3a60eb4e7f9c51eb1ef2dc90b72ce5b51318cd6 Mon Sep 17 00:00:00 2001 From: Steve Desmond Date: Fri, 11 Aug 2017 13:58:26 -0400 Subject: [PATCH] Improve "uninstall first" messaging/grammar --- build/win32/code.iss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/win32/code.iss b/build/win32/code.iss index e5c3d9d2a46..73b031fe643 100644 --- a/build/win32/code.iss +++ b/build/win32/code.iss @@ -821,7 +821,7 @@ begin end; if not Result then begin - MsgBox('Please uninstall {#NameShort} ' + AltArch + 'bits before installing this ' + ThisArch + 'bits version.', mbInformation, MB_OK); + MsgBox('Please uninstall the ' + AltArch + '-bit version of {#NameShort} before installing this ' + ThisArch + '-bit version.', mbInformation, MB_OK); end; end; end;