IDE.Messages.pas 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. unit IDE.Messages;
  2. {
  3. Inno Setup
  4. Copyright (C) 1997-2025 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. SWizardAppFilesDownloadSourcePrompt = 'URL:';
  46. SWizardAppFilesDownloadExtractArchiveMessage = 'Is the file to download an archive which should be extracted?';
  47. SWizardAppFilesDownloadDestNamePrompt = 'Name of the file:';
  48. SWizardAppFilesDownloadArchiveDestNamePrompt = 'Name of the file (extension should match archive format):';
  49. SWizardAppFilesDownloadExternalSizePrompt = 'Approximate size of the file in megabytes:';
  50. SWizardAppExeFilter = 'Application files (*.exe)|*.exe|All files|*.*';
  51. SWizardAppExeDefaultExt = 'exe';
  52. SWizardAppAssoc = 'Application File Association';
  53. SWizardAppAssoc2 = 'Please specify which file association should be created for your application.';
  54. SWizardAppIcons = 'Application Shortcuts';
  55. SWizardAppIcons2 = 'Please specify which shortcuts should be created for your application.';
  56. SWizardAppDocs = 'Application Documentation';
  57. SWizardAppDocs2 = 'Please specify which documentation files should be shown by Setup during installation.';
  58. SWizardAppDocsFilter = 'Documentation files (*.rtf,*.txt)|*.rtf;*.txt|All files|*.*';
  59. SWizardAppDocsDefaultExt = 'rtf';
  60. SWizardAppRegFilter = 'Registry files (*.reg)|*.reg|All files|*.*';
  61. SWizardAppRegDefaultExt = 'reg';
  62. SWizardPrivilegesRequired = 'Setup Install Mode';
  63. SWizardPrivilegesRequired2 = 'Please specify in which install mode Setup should run.';
  64. SWizardAppRegistry = 'Application Registry Keys And Values';
  65. SWizardAppRegistry2 = 'Please specify the registry keys and values that are part of your application.';
  66. SWizardLanguages = 'Setup Languages';
  67. SWizardLanguages2 = 'Please specify which Setup languages should be included.';
  68. SWizardCompiler = 'Compiler Settings';
  69. SWizardCompiler2 = 'Please specify some basic compiler settings.';
  70. SWizardCompilerSetupIconFileFilter = 'Icon files (*.ico)|*.ico|All files|*.*';
  71. SWizardCompilerSetupIconFileDefaultExt = 'ico';
  72. SWizardCompilerOutputDir = 'Please specify the folder.';
  73. SWizardWizardStyle = 'Wizard Style';
  74. SWizardWizardStyle2 = 'Please specify which wizard style should be used.';
  75. SWizardISPP = 'Inno Setup Preprocessor';
  76. SWizardISPP2 = 'Please specify whether Inno Setup Preprocessor should be used.';
  77. 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?';
  78. SWizardISPPCheck = '&Yes, use #define compiler directives';
  79. SWizardFinished = 'Finished';
  80. SWizardNextButton = '&Next';
  81. SWizardFinishButton = '&Finish';
  82. SWizardCancelMessage = 'The [name] is not complete. If you quit now, the new script file will not be generated.'#13#13'Exit the [name]?';
  83. SWizardAllFilesFilter = 'All files|*.*';
  84. SWizardAppNameError = 'Please specify the application name.';
  85. SWizardAppVersionError = 'Please specify the application version.';
  86. SWizardAppRootDirError = 'Please specify the application destination base folder.';
  87. SWizardAppDirNameError = 'Please specify the application folder name.';
  88. SWizardAppExeError = 'Please specify the application main executable file.';
  89. SWizardAppGroupNameError = 'Please specify the application Start Menu group name.';
  90. SWizardFileDestRootDirError = 'Please specify the destination base folder.';
  91. SWizardFileAppDestRootDirError = 'Please specify a destination base folder other than the application folder';
  92. SWizardLanguagesSelError = 'Please select at least one language.';
  93. SWizardScriptHeader = '; Script generated by the [name].' + SNewLine + '; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!';
  94. { Status messages }
  95. SCompilerStatusStarting = '*** Starting compile. [%s]';
  96. SCompilerStatusFinished = '*** Finished. [%s, %s elapsed]';
  97. SCompilerStatusErrorAborted = '*** Compile aborted.';
  98. SCompilerStatusReset = '*** Log size limit reached, list reset.';
  99. SCompilerNeedCompiledExe = 'Cannot run Setup at this time. Please compile Setup successfully to completion first, with output enabled';
  100. SCompilerNeedUninstExe = 'Cannot run Uninstall at this time. Please run Setup successfully to completion first';
  101. SCompilerExecuteSetupError2 = 'Error executing "%s":' + SNewLine2 + '%d: %s';
  102. { Line parsing }
  103. SCompilerIllegalNullChar = 'Illegal null character on line %d';
  104. implementation
  105. end.