pkgmessages.pp 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. unit pkgmessages;
  2. {$mode objfpc}{$H+}
  3. interface
  4. Resourcestring
  5. SErrInValidArgument = 'Invalid command-line argument at position %d : %s';
  6. SErrNeedArgument = 'Option at position %d (%s) needs an argument';
  7. SErrMissingFPC = 'Could not find a fpc executable in the PATH';
  8. SErrMissingFPMake = 'Missing configuration fpmake.pp';
  9. SErrMissingMakefilefpc = 'Missing configuration Makefile.fpc';
  10. SErrNoPackageSpecified = 'No package specified';
  11. SErrRunning = 'The FPC make tool encountered the following error:';
  12. SErrActionAlreadyRegistered= 'Action "%s" is already registered';
  13. SErrActionNotFound = 'Action "%s" is not supported';
  14. SErrFailedToCompileFPCMake = 'Could not compile fpmake driver program';
  15. SErrNoFTPDownload = 'This binary has no support for FTP downloads.';
  16. SErrNoHTTPDownload = 'This binary has no support for HTTP downloads.';
  17. SErrBackupFailed = 'Backup of file "%s" to file "%s" failed.';
  18. SErrUnknownProtocol = 'Unknown download protocol: "%s"';
  19. SErrNoSuchFile = 'File "%s" does not exist.';
  20. SErrWGetDownloadFailed = 'Download failed: wget reported exit status %d.';
  21. SErrDownloadFailed = 'Download failed: %s';
  22. SErrInvalidVerbosity = 'Invalid verbosity string: "%s"';
  23. SErrInvalidCommand = 'Invalid command: %s';
  24. SErrChangeDirFailed = 'Could not change directory to "%s"';
  25. SErrHTTPGetFailed = 'HTTP Download failed.';
  26. SErrLoginFailed = 'FTP LOGIN command failed.';
  27. SErrCWDFailed = 'FTP CWD "%s" command failed.';
  28. SErrGETFailed = 'FTP GET "%s" command failed.';
  29. SLogGeneratingFPMake = 'Generating fpmake.pp';
  30. SLogNotCompilingFPMake = 'Skipping compiling of fpmake.pp, fpmake executable already exists';
  31. SLogCommandLineAction = 'Adding action from commandline: "%s %s"';
  32. SLogRunAction = 'Action: "%s %s"';
  33. SLogExecute = 'Executing: "%s %s"';
  34. SLogChangeDir = 'CurrentDir: "%s"';
  35. SLogDownloading = 'Downloading "%s" to "%s"';
  36. SLogUnzippping = 'Unzipping "%s"';
  37. SLogLoadingGlobalConfig = 'Loading global configuration from "%s"';
  38. SLogLoadingCompilerConfig = 'Loading compiler configuration from "%s"';
  39. SLogGeneratingGlobalConfig = 'Generating default global configuration in "%s"';
  40. SLogGeneratingCompilerConfig = 'Generating default compiler configuration in "%s"';
  41. SLogLoadingPackagesFile = 'Loading packages information from "%s"';
  42. SLogLoadingVersionsFile = 'Loading local versions information from "%s"';
  43. implementation
  44. end.