IDE.Messages.pas 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. unit IDE.Messages;
  2. {
  3. Inno Setup
  4. Copyright (C) 1997-2024 Jordan Russell
  5. Portions by Martijn Laan
  6. For conditions of distribution and use, see LICENSE.TXT.
  7. Compiler IDE Messages
  8. Some but not all language-specific text used by the Compiler IDE is in here.
  9. }
  10. interface
  11. const
  12. SNewLine = #13#10; { line break }
  13. SNewLine2 = #13#10#13#10; { double line break }
  14. { Compiler-specific messages }
  15. SCompilerCommandLineHelp3 = 'Command line usage:' + SNewLine +
  16. SNewLine +
  17. 'compil32 /cc <script file>' + SNewLine +
  18. 'compil32 /wizard <wizard name> <script file>' + SNewLine +
  19. SNewLine +
  20. 'Examples:' + SNewLine +
  21. 'compil32 /cc c:\isetup\sample32\sample1.iss' + SNewLine +
  22. 'compil32 /cc "C:\Inno Setup\Sample32\My script.iss"' + SNewLine +
  23. 'compil32 /wizard "My Script Wizard" c:\temp.iss';
  24. { Compiler form labels }
  25. SCompilerFormCaption = 'Inno Setup Compiler';
  26. SCompilerScriptFileLabel = 'Script &File:';
  27. SCompilerStatusLabel = 'Status &Messages:';
  28. SCompilerScriptBrowseButton = '&Browse...';
  29. SCompilerStartButton = '&Start';
  30. SCompilerExitButton = 'E&xit';
  31. SCompilerOpenFilter = 'Inno Setup Script files (*.iss)|*.iss|All files|*.*';
  32. SCompilerExampleScripts = 'Example scripts...';
  33. SCompilerMoreFiles = 'More files...';
  34. { Compiler Script Wizard }
  35. SWizardDefaultName = 'Inno Setup Script Wizard';
  36. SWizardWelcome = 'Welcome';
  37. SWizardAppInfo = 'Application Information';
  38. SWizardAppInfo2 = 'Please specify some basic information about your application.';
  39. SWizardAppDir = 'Application Folder';
  40. SWizardAppDir2 = 'Please specify folder information about your application.';
  41. SWizardAppFiles = 'Application Files';
  42. SWizardAppFiles2 = 'Please specify the files that are part of your application.';
  43. SWizardAppFiles3 = 'Please specify the source folder.';
  44. SWizardAppFilesSubDirsMessage = 'Should files in subfolders of "%s" also be included?';
  45. SWizardAppExeFilter = 'Application files (*.exe)|*.exe|All files|*.*';
  46. SWizardAppExeDefaultExt = 'exe';
  47. SWizardAppAssoc = 'Application File Association';
  48. SWizardAppAssoc2 = 'Please specify which file association should be created for your application.';
  49. SWizardAppIcons = 'Application Shortcuts';
  50. SWizardAppIcons2 = 'Please specify which shortcuts should be created for your application.';
  51. SWizardAppDocs = 'Application Documentation';
  52. SWizardAppDocs2 = 'Please specify which documentation files should be shown by Setup during installation.';
  53. SWizardAppDocsFilter = 'Documentation files (*.rtf,*.txt)|*.rtf;*.txt|All files|*.*';
  54. SWizardAppDocsDefaultExt = 'rtf';
  55. SWizardAppRegFilter = 'Registry files (*.reg)|*.reg|All files|*.*';
  56. SWizardAppRegDefaultExt = 'reg';
  57. SWizardPrivilegesRequired = 'Setup Install Mode';
  58. SWizardPrivilegesRequired2 = 'Please specify in which install mode Setup should run.';
  59. SWizardAppRegistry = 'Application Registry Keys And Values';
  60. SWizardAppRegistry2 = 'Please specify the registry keys and values that are part of your application.';
  61. SWizardLanguages = 'Setup Languages';
  62. SWizardLanguages2 = 'Please specify which Setup languages should be included.';
  63. SWizardCompiler = 'Compiler Settings';
  64. SWizardCompiler2 = 'Please specify some basic compiler settings.';
  65. SWizardCompilerSetupIconFileFilter = 'Icon files (*.ico)|*.ico|All files|*.*';
  66. SWizardCompilerSetupIconFileDefaultExt = 'ico';
  67. SWizardCompilerOutputDir = 'Please specify the folder.';
  68. SWizardISPP = 'Inno Setup Preprocessor';
  69. SWizardISPP2 = 'Please specify whether Inno Setup Preprocessor should be used.';
  70. SWizardISPPLabel = 'The [name] can use #define compiler directives to simplify your script. Although this is not necessary, it will make it easier to manually change the script later.' + SNewLine2 + 'Do you want the [name] to use #define compiler directives?';
  71. SWizardISPPCheck = '&Yes, use #define compiler directives';
  72. SWizardFinished = 'Finished';
  73. SWizardNextButton = '&Next';
  74. SWizardFinishButton = '&Finish';
  75. SWizardCancelMessage = 'The [name] is not complete. If you quit now, the new script file will not be generated.'#13#13'Exit the [name]?';
  76. SWizardAllFilesFilter = 'All files|*.*';
  77. SWizardAppNameError = 'Please specify the application name.';
  78. SWizardAppVersionError = 'Please specify the application version.';
  79. SWizardAppRootDirError = 'Please specify the application destination base folder.';
  80. SWizardAppDirNameError = 'Please specify the application folder name.';
  81. SWizardAppExeError = 'Please specify the application main executable file.';
  82. SWizardAppGroupNameError = 'Please specify the application Start Menu group name.';
  83. SWizardFileDestRootDirError = 'Please specify the destination base folder.';
  84. SWizardFileAppDestRootDirError = 'Please specify a destination base folder other than the application folder';
  85. SWizardLanguagesSelError = 'Please select at least one language.';
  86. SWizardScriptHeader = '; Script generated by the [name].' + SNewLine + '; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!';
  87. { Status messages }
  88. SCompilerStatusStarting = '*** Starting compile. [%s]';
  89. SCompilerStatusFinished = '*** Finished. [%s, %s elapsed]';
  90. SCompilerStatusErrorAborted = '*** Compile aborted.';
  91. SCompilerStatusReset = '*** Log size limit reached, list reset.';
  92. SCompilerNeedCompiledExe = 'Cannot run Setup at this time. Please compile Setup successfully to completion first, with output enabled';
  93. SCompilerNeedUninstExe = 'Cannot run Uninstall at this time. Please run Setup successfully to completion first';
  94. SCompilerExecuteSetupError2 = 'Error executing "%s":' + SNewLine2 + '%d: %s';
  95. { Line parsing }
  96. SCompilerIllegalNullChar = 'Illegal null character on line %d';
  97. implementation
  98. end.