spiegel-keyman/windows/src/developer/setup/SetupStrings.pas
Marc Durdin b65b982584 Keyman Desktop and Keyman Developer open source 10.0 alpha seed (#121)
* Keyman for Windows 10.0 Open Source

* Squashed 'windows/src/ext/jedi/jedi/' content from commit f444ad2

git-subtree-dir: windows/src/ext/jedi/jedi
git-subtree-split: f444ad2da4693851e523f1ea6bd541f701904c24

* Squashed 'windows/src/ext/jedi/jcl/' content from commit d63d3c9fd

git-subtree-dir: windows/src/ext/jedi/jcl
git-subtree-split: d63d3c9fd9ff84efdd8159084ec6a60313644243

* Squashed 'windows/src/ext/jedi/jvcl/' content from commit bee19f3b4

git-subtree-dir: windows/src/ext/jedi/jvcl
git-subtree-split: bee19f3b46909fde2fa92c06cd2706f41d99f6c3

* Add required .res files

* Add required .res files

* Add docbook files (forced)

* Add required libxslt

* Add required jedi files

* Add installation files

* Tweak .gitignore for open

* CI

* Remove KMW from Developer source (#122)

* Remove KMW from Developer source (copies during build)

* Remove KMW from Developer source (copies during build)

* Remove KMW from Developer source (copies during build)

* Fixup release build and copy license, readme from kmw during build

* Remove obsolete build help documentation

* Keyman Engine 10 on Windows regression for shift states (#129)

* Improve #128 -- cleaner debug messages

* Fixes #127, shift state now resets correctly; and more work for #128

* Fixes #130 (#131)
2017-07-25 10:53:06 +07:00

107 lines
3.1 KiB
ObjectPascal

(*
Name: SetupStrings
Copyright: Copyright (C) SIL International.
Documentation:
Description:
Create Date: 19 Jun 2007
Modified Date: 17 Sep 2007
Authors: mcdurdin
Related Files:
Dependencies:
Bugs:
Todo:
Notes:
History: 19 Jun 2007 - mcdurdin - I817 - Translate to Unicode
23 Aug 2007 - mcdurdin - Initial version from Desktop
17 Sep 2007 - mcdurdin - I1072 - Add log messages for silent install
*)
unit SetupStrings;
interface
type
TInstallInfoText = (
ssFontSize_Dialog,
ssFontSize_Title,
ssFontSize_InstallButton,
ssFontName_Dialog,
ssFontName_Title,
ssFontName_InstallButton,
ssApplicationTitle,
ssTitle,
ssWelcome_Plain,
ssCheckForUpdates,
ssInstallButton,
ssExitButton,
ssErrorDownloadingUpdate,
ssErrorUnableToContactServer,
ssErrorUnableToContactServerDetailed,
ssStatusCheckingWindowsInstaller,
ssStatusCheckingInternetExplorer,
ssStatusCheckingMSXML,
ssStatusCheckingForUpdates,
ssStatusInstalling,
ssStatusComplete,
ssQueryUpdateWindowsInstaller,
ssQueryUpdateInternetExplorer,
ssQueryUpdateMSXML,
ssQueryUpdateVersion,
ssQueryRestart,
ssErrorUnableToAutomaticallyRestart,
ssRedistIEUpdateRequired,
ssMustRestart,
ssRedistRequired
);
const
FDefaultStrings: array[TInstallInfoText] of WideString = (
'16', '24', '18',
'', '', '',
'Keyman Developer Setup',
'%0:s Setup',
'Setup will install %0:s',
'Check for &updates online before installing',
'&Install Keyman Developer',
'E&xit',
'Error %0:d downloading update from server',
'Unable to contact server',
'Unable to contact server, error was: %0:s',
'Checking Windows Installer version',
'Checking Internet Explorer version',
'Checking MSXML version',
'Checking for updates online',
'Installing Keyman Developer',
'Installation Complete',
'An updated version of Windows Installer is required to install Keyman Developer. Do you want to download and install it now?',
'Internet Explorer 5.5 or later is required to install Keyman Developer. Do you want to download it now?',
'MSXML 3.0 is required to install Keyman Developer. Do you want to download it now?',
'Version %1:s of Keyman Developer has been released and is available for download. This update is %0:dKB. '+
'Do you want to download and install the updated version (recommended)?',
'You must restart Windows before Setup can complete. When you restart Windows, Setup will continue. Restart now?',
'Windows was not able to be automatically restarted. You should restart Windows before you try and start Keyman Developer.',
'Internet Explorer 5.5 or later is required to install Keyman Developer.',
'You must restart Windows to complete Setup. When you restart Windows, Setup will finish.',
'A redistributable %0:s is required but is not available in the install path. This redistributable can be downloaded from the Keyman website.'
);
implementation
end.