pkgmessages.pp 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. unit pkgmessages;
  2. {$mode objfpc}{$H+}
  3. interface
  4. Resourcestring
  5. SError = 'Error: ';
  6. SWarning = 'Warning: ';
  7. SDebug = 'Debug: ';
  8. SErrInValidArgument = 'Invalid command-line argument at position %d : %s';
  9. SErrNeedArgument = 'Option at position %d (%s) needs an argument';
  10. SErrMissingFPC = 'Could not find a fpc executable in the PATH';
  11. SErrInvalidFPCInfo = 'Compiler returns invalid information, check if fpc -iV works';
  12. SErrMissingFPMake = 'Missing configuration fpmake.pp';
  13. SErrMissingMakefilefpc = 'Missing configuration Makefile.fpc';
  14. SErrMissingDirectory = 'Missing directory "%s"';
  15. SErrMissingCompilerConfig = 'Could not find compiler configuration "%s"';
  16. SErrMissingInstallPackage = 'Could not find package "%s"';
  17. SErrNoPackageSpecified = 'No package specified';
  18. SErrNoPackageAvailable = 'Package %s %s is not available';
  19. SErrOnlyLocalDir = 'The speficied command "%s" works only on current dir, not on a (remote) package';
  20. SErrExecutionFPMake = 'Execution of FPMake %s failed';
  21. SErrException = 'The FPC Package tool encountered the following error:';
  22. SErrActionAlreadyRegistered= 'Action "%s" is already registered';
  23. SErrActionNotFound = 'Action "%s" is not supported';
  24. SErrCompileFailureFPMake = 'Could not compile fpmake driver program';
  25. SErrCompileFailureFPMakeTryRecovery = 'Could not compile fpmake driver program, try adding "--recovery"';
  26. SErrNoFTPDownload = 'This binary has no support for FTP downloads.';
  27. SErrNoHTTPDownload = 'This binary has no support for HTTP downloads.';
  28. SErrBackupFailed = 'Backup of file "%s" to file "%s" failed.';
  29. SErrUnknownProtocol = 'Unknown download protocol: "%s"';
  30. SErrNoSuchFile = 'File "%s" does not exist.';
  31. SErrDownloadFailed = '%s Download of "%s" failed: %s';
  32. SErrInvalidLogLevels = 'Invalid verbosity string: "%s"';
  33. SErrInvalidCommand = 'Invalid command: %s';
  34. SErrChangeDirFailed = 'Could not change directory to "%s"';
  35. SErrCorruptPackagesFile = 'Packages file "%s" is corrupt, delete file manual and retry';
  36. SErrCorruptMirrorsFile = 'Mirrors file "%s" is corrupt, delete file manual and retry';
  37. SErrPackageIsLocal = 'Operation not supported for local packages';
  38. SErrConvertFPMakeExists = 'Found existing fpmake.pp, aborting conversion';
  39. SErrFailedToSelectMirror = 'Could not select a mirror, run update and retry';
  40. SErrUnsupportedConfigVersion = 'Configuration file "%s" is too old, delete file manual and retry';
  41. SErrPackageDoesNotSupportTarget = 'Package %s does not support %s';
  42. SErrHTTPGetFailed = 'HTTP Download failed.';
  43. SErrLoginFailed = 'FTP LOGIN command failed.';
  44. SErrCWDFailed = 'FTP CWD "%s" command failed.';
  45. SErrGETFailed = 'FTP GET "%s" command failed.';
  46. SErrBrokenPackagesFound = 'Found broken packages, run "fppkg fixbroken" first';
  47. SErrManifestNoSinglePackage = 'Manifest file "%s" does not contain exactly one package';
  48. SLogGeneratingFPMake = 'Generating fpmake.pp';
  49. SLogNotCompilingFPMake = 'Skipping compiling of fpmake.pp, fpmake executable already exists';
  50. SLogCommandLineAction = 'Adding action from commandline: "%s %s"';
  51. SLogRunAction = 'Action: "%s"';
  52. SLogExecute = 'Executing: "%s %s"';
  53. SLogChangeDir = 'CurrentDir: "%s"';
  54. SLogDownloading = 'Downloading "%s" to "%s"';
  55. SLogUnzippping = 'Unzipping "%s"';
  56. SLogZippping = 'Zipping "%s"';
  57. SLogLoadingGlobalConfig = 'Loading global configuration from "%s"';
  58. SLogLoadingCompilerConfig = 'Loading compiler configuration from "%s"';
  59. SLogLoadingFPMakeCompilerConfig = 'Loading compiler configuration for fpmake building from "%s"';
  60. SLogGeneratingGlobalConfig = 'Generating default global configuration in "%s"';
  61. SLogDetectedCompiler = 'Detected compiler "%s" (version %s for %s)';
  62. SLogDetectedPrefix = 'Detected %s prefix "%s"';
  63. SLogFPCDirEnv = 'FPCDIR from environment setting "%s"';
  64. SLogGeneratingCompilerConfig = 'Generating default compiler configuration in "%s"';
  65. SLogLoadingPackagesFile = 'Loading available packages from "%s"';
  66. SLogLoadingMirrorsFile = 'Loading available mirrors from "%s"';
  67. SLogFindInstalledPackages = 'Finding installed packages in "%s"';
  68. SLogSavingStatusFile = 'Saving local status to "%s"';
  69. SLogFPMKUnitDepVersion = 'Checking for %s %s, installed %s, available %s';
  70. SLogFPMKUnitDepTooOld = 'Minimum version of %s is not installed, using internal fpmkunit with limited functionality';
  71. SLogSelectedMirror = 'Selected mirror "%s"';
  72. SLogUpgradingConfig = 'Configuration file "%s" is updated with new configuration settings';
  73. SLogPackageDependency = 'Dependency on package %s %s, installed %s, available %s (%s)';
  74. SLogPackageChecksumChanged = 'Package %s needs to be rebuild, dependency %s is modified';
  75. SLogCheckBrokenDependenvies= 'Checking for broken dependencies';
  76. SLogGlobalCfgHeader = 'Using global configuration:';
  77. SLogGlobalCfgRemoteMirrorsURL = ' RemoteMirrorsURL: "%s"';
  78. SLogGlobalCfgRemoteRepository = ' RemoteRepository: "%s"';
  79. SLogGlobalCfgLocalRepository = ' LocalRepository: "%s"';
  80. SLogGlobalCfgBuildDir = ' BuildDir: "%s"';
  81. SLogGlobalCfgArchivesDir = ' ArchivesDir: "%s"';
  82. SLogGlobalCfgCompilerConfigDir = ' CompilerConfigDir: "%s"';
  83. SLogGlobalCfgDefaultCompilerConfig = ' DefaultCompilerConfig: "%s"';
  84. SLogGlobalCfgFPMakeCompilerConfig = ' FPMakeCompilerConfig: "%s"';
  85. SLogGlobalCfgDownloader = ' Downloader: "%s"';
  86. SLogCompilerCfgHeader = 'Using %scompiler configuration:';
  87. SLogCompilerCfgCompiler = ' Compiler: "%s"';
  88. SLogCompilerCfgTarget = ' Target: "%s"';
  89. SLogCompilerCfgVersion = ' Version: "%s"';
  90. SLogCompilerCfgGlobalInstallDir = ' GlobalInstallDir: "%s"';
  91. SLogCompilerCfgLocalInstallDir = ' LocalInstallDir: "%s"';
  92. SLogCompilerCfgGlobalPrefix = ' GlobalPrefix: "%s"';
  93. SLogCompilerCfgLocalPrefix = ' LocalPrefix: "%s"';
  94. SDbgFound = 'Found';
  95. SDbgNotFound = 'Not Found';
  96. SDbgDirectoryExists = 'Directory "%s" %s';
  97. SDbgFileExists = 'File "%s" %s';
  98. SDbgBackupFile = 'Creating Backup File "%s"';
  99. SDbgPackageMultipleLocations = 'Multiple installations found for package %s, using installation "%s"';
  100. SDbgPackageDependencyOtherTarget = 'Dependency on package %s is not for %s';
  101. SDbgObsoleteDependency = 'Obsolete dependency found on package %s';
  102. implementation
  103. end.