pkgmessages.pp 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. SErrRunning = 'The FPC make tool encountered the following error:';
  11. SErrActionAlreadyRegistered= 'Action "%s" is already registered';
  12. SErrActionNotFound = 'Action "%s" is not supported';
  13. SErrFailedToCompileFPCMake = 'Could not compile fpmake driver program';
  14. SErrNoFTPDownload = 'This binary has no support for FTP downloads.';
  15. SErrNoHTTPDownload = 'This binary has no support for HTTP downloads.';
  16. SErrBackupFailed = 'Backup of file "%s" to file "%s" failed.';
  17. SErrUnknownProtocol = 'Unknown download protocol: "%s"';
  18. SErrNoSuchFile = 'File "%s" does not exist.';
  19. SErrWGetDownloadFailed = 'Download failed: wget reported exit status %d.';
  20. SErrDownloadFailed = 'Download failed: %s';
  21. SErrInvalidVerbosity = 'Invalid verbosity string: "%s"';
  22. SErrInvalidCommand = 'Invalid command: %s';
  23. SErrChangeDirFailed = 'Could not change directory to "%s"';
  24. SErrHTTPGetFailed = 'HTTP Download failed.';
  25. SErrLoginFailed = 'FTP LOGIN command failed.';
  26. SErrCWDFailed = 'FTP CWD "%s" command failed.';
  27. SErrGETFailed = 'FTP GET "%s" command failed.';
  28. SLogGeneratingFPMake = 'Generating fpmake.pp';
  29. SLogNotCompilingFPMake = 'Skipping compiling of fpmake.pp, fpmake executable already exists';
  30. SLogCommandLineAction = 'Adding action from commandline: "%s %s"';
  31. SLogRunAction = 'Action: "%s %s"';
  32. SLogExecute = 'Executing: "%s %s"';
  33. SLogChangeDir = 'CurrentDir: "%s"';
  34. SLogLoadingCompilerConfig = 'Loading compiler configuration from "%s"';
  35. SLogGeneratingCompilerConfig = 'Generating default compiler configuration in "%s"';
  36. SLogLoadingRepository = 'Loading repository data from "%s"';
  37. SLogLoadingVersions = 'Loading versions data from "%s"';
  38. implementation
  39. end.