Compiler.Messages.pas 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  1. unit Compiler.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 Messages
  8. All language-specific text used by the compiler is in here. If you want to
  9. translate it into another language, all you need to change is this unit.
  10. }
  11. interface
  12. const
  13. SNewLine = #13#10; { line break }
  14. SNewLine2 = #13#10#13#10; { double line break }
  15. { Compiler-specific messages }
  16. SCompilerVersion = 'version %s';
  17. SCompilerNotOnWin32s = 'The 32-bit compiler will not run on Win32s.';
  18. { Status messages }
  19. SCompilerStatusPreprocessing = 'Preprocessing';
  20. SCompilerStatusPreprocessorStatus = ' %s';
  21. SBuiltinPreprocessStatusIncludingFile = 'Including file: %s';
  22. SCompilerStatusCreatingOutputDir = 'Creating output directory: %s';
  23. SCompilerStatusCreatingSignedUninstallerDir = 'Creating signed uninstaller directory: %s';
  24. SCompilerStatusDeletingPrevious = 'Deleting %s from output directory';
  25. SCompilerStatusParsingSectionLine = 'Parsing [%s] section, line %d';
  26. SCompilerStatusParsingSectionLineFile = 'Parsing [%s] section, line %d of %s';
  27. SCompilerStatusFilesVerInfo = ' Reading version info: %s';
  28. SCompilerStatusReadingFile = 'Reading file (%s)';
  29. SCompilerStatusPreparingSetupExe = 'Preparing Setup program executable';
  30. SCompilerStatusSkippingPreparingSetupExe = 'Skipping preparing Setup program executable, output is disabled';
  31. SCompilerStatusSignedUninstallerNew = ' Creating new signed uninstaller file: %s';
  32. SCompilerStatusSignedUninstallerExisting = ' Using existing signed uninstaller file: %s';
  33. SCompilerStatusDeterminingCodePages = 'Determining language code pages';
  34. SCompilerStatusConvertCodePage = ' Conversion code page: %d';
  35. SCompilerStatusReadingDefaultMessages = 'Reading default messages from Default.isl';
  36. SCompilerStatusParsingMessages = 'Parsing [LangOptions], [Messages], and [CustomMessages] sections';
  37. SCompilerStatusReadingCode = 'Reading [Code] section';
  38. SCompilerStatusCompilingCode = 'Compiling [Code] section';
  39. SCompilerStatusReadingInFile = ' Reading file: %s';
  40. SCompilerStatusReadingInScriptMsgs = ' Messages in script file';
  41. SCompilerStatusCreateSetupFiles = 'Creating setup files';
  42. SCompilerStatusSkippingCreateSetupFiles = 'Skipping creating setup files, output is disabled';
  43. SCompilerStatusCreateManifestFile = 'Creating manifest file';
  44. SCompilerStatusFilesCompressing = ' Compressing: %s';
  45. SCompilerStatusFilesCompressingVersion = ' Compressing: %s (%u.%u.%u.%u)';
  46. SCompilerStatusFilesStoring = ' Storing: %s';
  47. SCompilerStatusFilesStoringVersion = ' Storing: %s (%u.%u.%u.%u)';
  48. SCompilerStatusVerified = ' Verification successful';
  49. SCompilerStatusVerificationDisabled = ' Verification disabled!';
  50. SCompilerStatusCompressingSetupExe = ' Compressing Setup program executable';
  51. SCompilerStatusUpdatingVersionInfo = ' Updating version info (%s)';
  52. SCompilerStatusUpdatingManifest = ' Updating manifest (%s)';
  53. SCompilerStatusUpdatingIcons = ' Updating icons (%s)';
  54. SCompilerStatusCreatingDisk = ' Creating disk %d';
  55. SCompilerStatusError = 'ERROR:';
  56. SCompilerStatusWarning = 'Warning: ';
  57. SCompilerStatusSigningSetup = ' Signing Setup program executable';
  58. SCompilerStatusSigningSourceFile = ' Signing: %s';
  59. SCompilerStatusSourceFileAlreadySigned = ' Skipping signing, already signed: %s';
  60. SCompilerStatusSigning = ' Running Sign Tool %s: %s';
  61. SCompilerStatusSigningWithDelay = ' Running Sign Tool %s in %d milliseconds: %s';
  62. SCompilerStatusWillRetrySigning = ' Sign Tool command failed (%s). Will retry (%d tries left).';
  63. SCompilerSuccessfulMessage2 = 'The setup images were successfully created ' +
  64. 'in the output directory:' + SNewLine +
  65. '%s' + SNewLine +
  66. SNewLine +
  67. 'Would you like to test the installation now?';
  68. SCompilerSuccessfulTitle = 'Compile Successful';
  69. SCompilerAborted = 'Compile aborted. Please correct the problem and try again.';
  70. { Fatal errors }
  71. SCompilerScriptMissing2 = 'Specified script file does not exist';
  72. SCompilerOutputNotEmpty2 = 'Output directory must be empty prior to ' +
  73. 'compilation of any non-Setup files. Files named SETUP.* are ' +
  74. 'automatically deleted at the start of compilation.';
  75. SCompilerUnknownFilenamePrefix = 'Unknown filename prefix "%s"';
  76. SCompilerSourceFileDoesntExist = 'Source file "%s" does not exist';
  77. SCompilerSourceFileNotSigned = 'Source file "%s" is not signed';
  78. SCompilerSourceFileVerificationFailed = 'Verification of source file "%s" failed: %s';
  79. SCompilerVerificationSignatureDoesntExist = 'The signature file "%s" does not exist';
  80. SCompilerVerificationSignatureMalformed = 'The signature file "%s" is malformed';
  81. SCompilerVerificationSignatureBad = 'The signature file "%s" is bad';
  82. SCompilerVerificationKeyNotFound = 'The signature file "%s" uses an unknown key';
  83. SCompilerVerificationFileNameIncorrect = 'The name of the file is incorrect';
  84. SCompilerVerificationFileSizeIncorrect = 'The size of the file is incorrect';
  85. SCompilerVerificationFileHashIncorrect = 'The hash of the file is incorrect';
  86. SCompilerCopyError3a = 'Could not copy "%s" to "%s".' + SNewLine2 + 'Error %s';
  87. SCompilerCopyError3b = 'Could not copy "%s" to "%s".' + SNewLine2 + 'Error %d: %s';
  88. SCompilerReadError = 'Could not read "%s".' + SNewLine2 + 'Error: %s';
  89. SCompilerCompressInternalError = 'An internal error occurred during compression: %s';
  90. SCompilerNotEnoughSpaceOnFirstDisk = 'There is not enough space on the first disk to copy all of the required files';
  91. SCompilerSetup0Mismatch = 'Internal error SC1';
  92. SCompilerMustUseDiskSpanning = 'Disk spanning must be enabled in order to create an installation larger than %d bytes in size';
  93. SCompilerCompileCodeError = 'An error occurred while trying to compile the [Code] section:' + SNewLine2 + '%s';
  94. SCompilerFunctionFailedWithCode = '%s failed. Error %d: %s';
  95. SCompilerCheckPrecompiledFileTrustError = '%s' + SNewLine2 + 'To disable this verification, set [Setup] section directive "VerifyPrecompiledFiles" to "no". Before proceding, ensure that the file is neither corrupted nor has been tampered with.';
  96. { [Setup] }
  97. SCompilerUnknownDirective = 'Unrecognized [%s] section directive "%s"';
  98. SCompilerEntryObsolete = 'The [%s] section directive "%s" is obsolete and ignored in this version of Inno Setup.';
  99. SCompilerEntrySuperseded2 = 'The [%s] section directive "%s" has been superseded by "%s" in this version of Inno Setup.';
  100. SCompilerEntryMissing2 = 'Required [%s] section directive "%s" not specified';
  101. SCompilerEntryInvalid2 = 'Value of [%s] section directive "%s" is invalid';
  102. SCompilerEntryValueUnsupported = 'Value of [%s] section directive "%s" must not be "%s" if flag "%s" is used.';
  103. SCompilerEntryAlreadySpecified = '[%s] section directive "%s" already specified';
  104. SCompilerAppVersionOrAppVerNameRequired = 'The [Setup] section must include an AppVersion or AppVerName directive';
  105. SCompilerMinVersionWinMustBeZero = 'Minimum non NT version specified by MinVersion must be 0. (Windows 95/98/Me are no longer supported.)';
  106. SCompilerMinVersionNTTooLow = 'Minimum version specified by MinVersion must be at least %s otherwise Setup will never run. (Windows Vista/Server 2008 are no longer supported.)';
  107. SCompilerOnlyBelowVersionNTTooLow = 'Minimum version specified by OnlyBelowVersion must be higher than %s if not 0 otherwise Setup will never run. (Windows Vista/Server 2008 are no longer supported.)';
  108. SCompilerMinVersionRecommendation = 'Minimum version is set to %s but using %s instead (which is the default) is recommended.';
  109. SCompilerDiskSliceSizeInvalid = 'DiskSliceSize must be between %d and %d, or "max"';
  110. SCompilerDiskClusterSizeInvalid = 'DiskClusterSize must be between 1 and 32768';
  111. SCompilerInstallModeObsolete = 'The [%s] section directive "%s" is obsolete and ignored in this version of Inno Setup. Use command line parameters instead.';
  112. SCompilerMessagesFileObsolete = 'The MessagesFile directive is obsolete and no longer supported. Use the [Languages] section instead.';
  113. SCompilerMustUseDisableStartupPrompt = 'DisableStartupPrompt must be set to "yes" when AppName includes constants';
  114. SCompilerMustNotUsePreviousLanguage = 'UsePreviousLanguage must be set to "no" when AppId includes constants';
  115. SCompilerMustNotUsePreviousPrivileges = 'UsePreviousPrivileges must be set to "no" when AppId includes constants and PrivilegesRequiredOverridesAllowed allows "dialog"';
  116. SCompilerDirectiveNotUsingDefault = 'The [Setup] section directive "%s" is not assuming a default value because %s includes constants.';
  117. SCompilerDirectiveNotUsingPreferredDefault = 'The [Setup] section directive "%s" is defaulting to %s because %s includes constants.';
  118. SCompilerDirectivePatternTooLong = 'The [Setup] section directive "%s" contains a pattern that is too long';
  119. SCompilerOutputBaseFileNameSetup = 'Setting the [Setup] section directive "OutputBaseFileName" to "setup" is not recommended: all executables named "setup.exe" are shimmed by Windows application compatibility to load additional DLLs, such as version.dll.' + ' These DLLs are loaded unsafely by Windows and can be hijacked. Use a different name, for example "mysetup".';
  120. SCompilerWizImageRenamed = 'Wizard image "%s" has been renamed. Use "%s" instead or consider removing the directive to use modern built-in wizard images.';
  121. SCompilerArchitectureIdentifierInvalid = 'Architecture identifier "%s" is invalid';
  122. SCompilerArchitectureIdentifierDeprecatedWarning = 'Architecture identifier "%s" is deprecated. ' +
  123. 'Substituting "%s", but note that "%s" is preferred in most cases. See the "Architecture Identifiers" topic in help file for more information.';
  124. { Signing }
  125. SCompilerSignatureNeeded = 'Signed uninstaller mode is enabled. Using ' +
  126. 'an external code-signing tool, please attach your digital signature ' +
  127. 'to the following executable file:' + SNewLine2 + '%s' + SNewLine2 +
  128. 'and compile again';
  129. SCompilerSignatureInvalid = 'Digital signature appears to be invalid';
  130. SCompilerSignedFileContentsMismatchRetry = 'The contents of the signed file:' +
  131. SNewLine2 + '%s' + SNewLine2 + 'differ unexpectedly from the original ' +
  132. 'file. Try deleting the signed file and compiling again. If this error ' +
  133. 'persists, please report the problem';
  134. SCompilerSignedFileContentsMismatch = 'The contents of the signed file:' +
  135. SNewLine2 + '%s' + SNewLine2 + 'differ unexpectedly from the original ' +
  136. 'file';
  137. SCompilerNoSetupLdrSignError = 'The SignTool and SignedUninstaller directives may not be set when UseSetupLdr is set to "no"';
  138. SCompilerSignToolFileNameSequenceNotFound = 'Unable to run Sign Tool %s: $f sequence is missing.';
  139. SCompilerSignToolCreateProcessFailed = 'Failed to execute Sign Tool command.' +
  140. SNewLine2 + 'Error %d: %s';
  141. SCompilerSignToolNonZeroExitCode = 'Sign Tool command failed with exit code 0x%x';
  142. SCompilerSignToolSucceededButNoSignature = 'The Sign Tool command returned an ' +
  143. 'exit code of 0, but the file does not have a digital signature';
  144. { Line parsing }
  145. SCompilerLineTooLong = 'Line too long';
  146. SCompilerSectionTagInvalid = 'Invalid section tag';
  147. SCompilerSectionBadEndTag = 'Not inside "%s" section, but an end tag for ' +
  148. 'it was encountered';
  149. SCompilerTextNotInSection = 'Text is not inside a section';
  150. SCompilerInvalidDirective = 'Invalid compiler directive' +
  151. SNewLine2 + 'To be able to use compiler directives other than ''#include'', you need Inno Setup Preprocessor (ISPP) which is currently not installed.' +
  152. SNewLine2 + 'To install ISPP, reinstall Inno Setup and enable the ISPP option.';
  153. SCompilerErrorOpeningIncludeFile = 'Couldn''t open include file "%s": %s';
  154. SCompilerRecursiveInclude = 'Recursive include of "%s"';
  155. SCompilerIllegalNullChar = 'Illegal null character on line %d';
  156. SCompilerISPPMissing = 'ISPP.dll is missing';
  157. { Constant checks }
  158. SCompilerTwoBraces = 'Use two consecutive "{" characters if you are trying ' +
  159. 'to embed a single "{" and not a constant';
  160. SCompilerUnknownConst = 'Unknown constant "%s".' +
  161. SNewLine2 + SCompilerTwoBraces;
  162. SCompilerUnterminatedConst = 'A "}" is missing at the end of the constant "%s".' +
  163. SNewLine2 + SCompilerTwoBraces;
  164. SCompilerConstCannotUse = 'The constant "%s" cannot be used here';
  165. SCompilerBadEnvConst = 'Invalid environment constant "%s"';
  166. SCompilerBadRegConst = 'Invalid registry constant "%s"';
  167. SCompilerBadIniConst = 'Invalid INI constant "%s"';
  168. SCompilerBadParamConst = 'Invalid command line parameter constant "%s"';
  169. SCompilerBadCodeConst = 'Invalid code constant "%s"';
  170. SCompilerBadDriveConst = 'Invalid drive constant "%s"';
  171. SCompilerBadCustomMessageConst = 'Invalid custom message constant "%s"';
  172. SCompilerBadBoolConst = 'Invalid boolean constant "%s"';
  173. SCompilerConstantRenamed = 'Constant "%s" has been renamed. Use "%s" instead.';
  174. SCompilerCommonConstantRenamed = 'Constant "%s" has been renamed. Use "%s" instead or consider using its "auto" form.';
  175. { Special warnings }
  176. SCompilerMissingRunOnceIdsWarning = 'There are [%s] section entries without a %s parameter. '+
  177. 'By assigning a string to %1:s, you can ensure that a particular [%0:s] entry will only be executed once during uninstallation. ' +
  178. 'See the "[%0:s]" topic in help file for more information.';
  179. SCompilerUsedUserAreasWarning = 'The [%s] section directive "%s" is set to "%s" but per-user areas (%s) are used by the script. ' +
  180. 'Regardless of the version of Windows, if the installation is running in administrative install mode then you should be careful about making any per-user area changes: such changes may not achieve what you are intending. ' +
  181. 'See the "UsedUserAreasWarning" topic in help file for more information.';
  182. SCompilerOnlyBelowVersionParameterNTTooLowWarning = 'Minimum version specified by the OnlyBelowVersion parameter of an entry should be higher than %s if not 0 otherwise the entry is never processed. The entry should probably be removed. (Windows Vista/Server 2008 are no longer supported.)';
  183. { Directive parsing }
  184. SCompilerDirectiveNameMissing = 'Missing directive name';
  185. SCompilerDirectiveHasNoValue = 'Directive "%s" has no value';
  186. { Parameter parsing }
  187. SCompilerParamHasNoValue = 'Specified parameter "%s" has no value';
  188. SCompilerParamQuoteError = 'Mismatched or misplaced quotes on parameter "%s"';
  189. SCompilerParamMissingClosingQuote = 'Missing closing quote on parameter "%s"';
  190. SCompilerParamDataTooLong = 'Data on parameter "%s" is too long';
  191. SCompilerParamUnknownParam = 'Unrecognized parameter name "%s"';
  192. SCompilerParamDuplicated = 'Cannot have multiple "%s" parameters';
  193. SCompilerParamConflict = 'Cannot have both the "%s" and "%s" parameters';
  194. SCompilerParamEmpty2 = 'Parameter "%s" is empty';
  195. SCompilerParamNotSpecified = 'Required parameter "%s" not specified';
  196. SCompilerParamNoQuotes2 = 'Parameter "%s" cannot include quotes (")';
  197. SCompilerParamNoBackslash = 'Parameter "%s" cannot include backslashes (\)';
  198. SCompilerParamNoPrecedingBackslash = 'Parameter "%s" cannot begin with a backslash (\)';
  199. SCompilerParamInvalid2 = 'Parameter "%s" is not a valid value';
  200. SCompilerParamInvalidWithError = 'Parameter "%s" is not a valid value: %s';
  201. { Flags }
  202. SCompilerParamUnknownFlag2 = 'Parameter "%s" includes an unknown flag';
  203. SCompilerParamErrorBadCombo2 = 'Parameter "%s" cannot have both the "%s" and "%s" flags';
  204. SCompilerParamErrorBadCombo2SameSource = 'Parameter "%s" cannot have both the "%s" and "%s" flags on a single source file';
  205. SCompilerParamUnsupportedFlag = 'Parameter "%s" includes a flag that is not supported in this section';
  206. SCompilerParamFlagMissing = 'Flag "%s" must be used if flag "%s" is used';
  207. SCompilerParamFlagMissing2 = 'Flag "%s" must be used if parameter "%s" is used';
  208. SCompilerParamFlagMissing3 = 'Flag "%s" must be used if flags "%s" and "%s" are both used';
  209. SCompilerParamFlagMissingParam = 'Parameter "%s" must be specified if flag "%s" is used';
  210. { Types, components, tasks, check, beforeinstall, afterinstall }
  211. SCompilerParamUnknownType = 'Parameter "%s" includes an unknown type';
  212. SCompilerParamUnknownComponent = 'Parameter "%s" includes an unknown component';
  213. SCompilerParamUnknownTask = 'Parameter "%s" includes an unknown task';
  214. SCompilerExpressionError = 'Directive or parameter "%s" expression error: %s';
  215. SCompilerBadCheckOrInstall = 'Invalid Check, BeforeInstall or AfterInstall parameter "%s"';
  216. { Permissions }
  217. SCompilerPermissionsInvalidValue = 'Parameter "Permissions" includes a malformed value: "%s"';
  218. SCompilerPermissionsUnknownSid = 'Parameter "Permissions" includes an unknown SID: "%s"';
  219. SCompilerPermissionsUnknownMask = 'Parameter "Permissions" includes an unknown access type: "%s"';
  220. SCompilerPermissionsValueLimitExceeded = 'Parameter "Permissions" cannot include more than %d values';
  221. SCompilerPermissionsTooMany = 'Too many unique "Permissions" parameter values';
  222. { [Code] }
  223. SCompilerCodeUnsupportedEventFunction = 'Event function named "%s" is no longer supported. Create a "%s" function instead';
  224. SCompilerCodeFunctionRenamed = 'Support function "%s" has been renamed. Use "%s" instead.';
  225. SCompilerCodeFunctionRenamedWithAlternative = 'Support function "%s" has been renamed. Use "%s" instead or consider using "%s".';
  226. SCompilerCodeFunctionDeprecatedWithHint = 'Support function "%s" is deprecated. Use "%s" instead. %s';
  227. SCompilerCodeFunctionExtractArchiveHint = 'It includes an additional parameter to optionally specify a password.';
  228. SCompilerCodeFunctionDeprecatedWithAlternativeAndDocs = 'Support function "%s" is deprecated. Use "%s" instead, but note that "%s" is preferred in most cases. See the "%s" topic in help file for more information.';
  229. { [Types] }
  230. SCompilerTypesCustomTypeAlreadyDefined = 'A custom type has already been defined';
  231. { [Components], [Tasks], [Languages], [ISSigKeys] }
  232. SCompilerComponentsOrTasksBadName = 'Parameter "Name" includes invalid characters.' + SNewLine2 +
  233. 'It may only include alphanumeric characters, underscores, slashes (/), and/or backslashes (\), may not start with a number and may not start or end with a slash or a backslash. Names ''not'', ''and'' and ''or'' are reserved';
  234. SCompilerComponentsInvalidLevel = 'Component cannot be more than one level below the preceding component';
  235. SCompilerTasksInvalidLevel = 'Task cannot be more than one level below the preceding task';
  236. SCompilerLanguagesOrISSigKeysBadName = 'Parameter "%s" includes invalid characters.' + SNewLine2 + 'It may only include alphanumeric characters and/or underscores, and may not start with a number. Names ''not'', ''and'' and ''or'' are reserved';
  237. SCompilerLanguagesOrISSigKeysBadGroupName = 'Parameter "%s" includes a name with invalid characters.' + SNewLine2 + 'Names may only include alphanumeric characters and/or underscores, and may not start with a number. Names ''not'', ''and'' and ''or'' are reserved';
  238. SCompilerISSigKeysNameOrRuntimeIDExists = '%s "%s" is already in use"';
  239. SCompilerISSigKeysKeyNotSpecified = 'Required parameter(s) "KeyFile" or "PublicX"/"PublicY" not specified';
  240. SCompilerISSigKeysBadKeyID = 'Value of parameter "KeyID" is not valid for given "KeyFile" or "PublicX"/"PublicY" values.';
  241. SCompilerISSigKeysBadKeyFile = 'Key file is malformed';
  242. SCompilerISSigKeysUnknownKeyImportResult = 'Unknown import key result';
  243. { [Languages] }
  244. SCompilerParamUnknownLanguage = 'Parameter "%s" includes an unknown language';
  245. { [Messages] }
  246. SCompilerMessagesMissingEquals = 'Missing "=" separator between message name and text';
  247. SCompilerMessagesNotRecognizedDefault = 'Message name "%s" in Default.isl is not recognized by this version of Inno Setup';
  248. SCompilerMessagesNotRecognizedWarning = 'Message name "%s" is not recognized by this version of Inno Setup. Ignoring.';
  249. SCompilerMessagesNotRecognizedInFileWarning = 'Message name "%s" in "%s" is not recognized by this version of Inno Setup. Ignoring.';
  250. SCompilerMessagesMissingDefaultMessage = 'A message named "%s" has not been defined in Default.isl. It is required by this version of Inno Setup';
  251. SCompilerMessagesMissingMessageWarning = 'A message named "%s" has not been defined for the "%s" language. Will use the English message from Default.isl.';
  252. { [CustomMessages] }
  253. SCompilerCustomMessageBadName = 'Custom message name may only include alphanumeric characters and/or underscores, and cannot begin with a number';
  254. SCompilerCustomMessagesMissingLangWarning = 'Custom message "%s" has not been defined for the "%s" language. Will use the custom message from the first language in which it was defined: "%s".';
  255. SCompilerCustomMessagesMissingName = 'A custom message named "%s" has not been defined';
  256. { [Messages] & [LangOptions] }
  257. SCompilerUnknownLanguage = 'Unknown language name "%s"';
  258. SCompilerCantSpecifyLanguage = 'A language name may not be specified in a messages file';
  259. SCompilerCantSpecifyLangOption = 'Language option "%s" cannot be applied to all languages';
  260. { [Files] }
  261. SCompilerFilesTmpBadFlag = 'Parameter "Flags" cannot have the "%s" flag on ' +
  262. 'a file copied to the {tmp} directory, or when the "deleteafterinstall" or ' +
  263. '"dontcopy" flag is used';
  264. SCompilerFilesWildcardNotMatched = 'No files found matching "%s"';
  265. SCompilerFilesDestNameCantBeSpecified = 'Parameter "DestName" cannot be specified if ' +
  266. 'the "Source" parameter contains wildcards or flag "extractarchive" is used but "download" is not';
  267. SCompilerFilesParamRequiresFlag = 'Parameter "%s" may only be used when the "%s" flag is used';
  268. SCompilerFilesParamFlagConflict = 'Parameter "%s" may not be used when the "%s" flag is used';
  269. SCompilerFilesParamFlagConflictSameSource = 'Parameter "%s" and the "%s" flag cannot both be used on a single source file';
  270. SCompilerFilesExcludeTooLong = 'Parameter "Excludes" contains a pattern that is too long';
  271. SCompilerFilesUnsafeFile = 'Unsafe file detected: %s.' + SNewLine2 +
  272. 'See the "Unsafe Files" topic in the help file for more information';
  273. SCompilerFilesSystemDirUsed = 'Attempt to deploy DLL file from own Windows System directory.' + SNewLine2 +
  274. 'See the "Unsafe Files" topic in the help file for more information on why this is dangerous and should be avoided';
  275. SCompilerFilesSystemDirNotUsed = 'Attempt to deploy registered file %s to a location other than {sys}.' + SNewLine2 +
  276. 'See the "Unsafe Files" topic in the help file for more information on why this is dangerous and should be avoided';
  277. SCompilerFilesIgnoreVersionUsedUnsafely =
  278. 'Unsafe flag usage on file "%s": The "ignoreversion" flag should not be ' +
  279. 'used on files installed to the Windows System directory ("{sys}").';
  280. SCompilerFilesWarningCopyMode = '"CopyMode: %s" has been superseded by "Flags: %s" in ' +
  281. 'this version of Inno Setup. Behaving as if "Flags: %s" were specified.';
  282. SCompilerFilesWarningASISOO = '"CopyMode: alwaysskipifsameorolder" is deprecated and ' +
  283. 'ignored in this version of Inno Setup. It is now the default behavior.';
  284. SCompilerFilesWarningSharedFileSysWow64 = 'DestDir should not be set to ' +
  285. '"{syswow64}" when the "sharedfile" flag is used. See the "sharedfile" ' +
  286. 'documentation in the help file for details.';
  287. SCompilerFilesISSigVerifyMissingISSigKeys = 'Flag "issigverify" may not be used when the "ISSigKeys" section doesn''t exist or is empty.';
  288. SCompilerFilesISSigAllowedKeysMissingISSigVerify = 'Flag "issigverify" must be used when the "ISSigAllowedKeys" parameter is used.';
  289. SCompilerFilesValueConflict = 'Parameter "%s" cannot allow different values on the same source file';
  290. SCompilerFilesUnkownISSigKeyNameOrGroupName = 'Parameter "%s" includes an unknown name or group name.';
  291. { [Icons] }
  292. SCompilerIconsNamePathNotSpecified = 'Parameter "Name" must include a path for the icon, ' +
  293. 'for example, "{group}\My Icon"';
  294. SCompilerIconsIconIndexInvalid = 'Parameter "IconIndex" is not a valid integer';
  295. { [Registry] }
  296. SCompilerRegistryDeleteKeyProhibited = 'The "uninsdeletekey" and ' +
  297. '"deletekey" flags are prohibited on the specified key because the ' +
  298. 'results would be disastrous. (You probably mean to delete a value instead.)';
  299. { [Run] }
  300. SCompilerRunCantUseRunOnceId = 'Parameter "RunOnceId" can only be used in ' +
  301. 'an [UninstallRun] section';
  302. SCompilerRunFlagObsolete = 'Flag "%s" is obsolete. Use "%s" instead.';
  303. SCompilerRunMultipleWaitFlags = 'Parameter "Flags" cannot include multiple "wait" flags';
  304. { [UninstallRun] }
  305. SCompilerUninstallRunCantUseDescription = 'Parameter "Description" can only be used in ' +
  306. 'a [Run] section';
  307. implementation
  308. end.