pkgmessages.pp 1.5 KB

1234567891011121314151617181920212223242526272829303132333435
  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. SErrMissingConfig = 'Missing configuration Makefile.fpc or fpmake.pp';
  8. SErrRunning = 'The FPC make tool encountered the following error: %s';
  9. SErrFailedToCompileFPCMake = 'Could not compile fpmake driver program';
  10. SErrNoFTPDownload = 'This binary has no support for FTP downloads.';
  11. SErrNoHTTPDownload = 'This binary has no support for HTTP downloads.';
  12. SErrBackupFailed = 'Backup of file "%s" to file "%s" failed.';
  13. SErrUnknownProtocol = 'Unknown download protocol: "%s"';
  14. SErrNoSuchFile = 'File "%s" does not exist.';
  15. SErrWGetDownloadFailed = 'Download failed: wget reported exit status %d.';
  16. SErrDownloadFailed = 'Download failed: %s';
  17. SErrInvalidVerbosity = 'Invalid verbosity string: "%s"';
  18. SErrInvalidCommand = 'Invalid command: %s';
  19. SErrHTTPGetFailed = 'HTTP Download failed.';
  20. SErrLoginFailed = 'FTP LOGIN command failed.';
  21. SErrCWDFailed = 'FTP CWD "%s" command failed.';
  22. SErrGETFailed = 'FTP GET "%s" command failed.';
  23. SLogGeneratingFPMake = 'Generating fpmake.pp';
  24. SLogCompilingFPMake = 'Compiling fpmake.pp: ';
  25. SLogRunningFPMake = 'Running fpmake';
  26. implementation
  27. end.