pkgmessages.pp 3.2 KB

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