pkgmessages.pp 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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. SErrRunning = 'The FPC make tool encountered the following error:';
  21. SErrActionAlreadyRegistered= 'Action "%s" is already registered';
  22. SErrActionNotFound = 'Action "%s" is not supported';
  23. SErrFailedToCompileFPCMake = 'Could not compile fpmake driver program';
  24. SErrNoFTPDownload = 'This binary has no support for FTP downloads.';
  25. SErrNoHTTPDownload = 'This binary has no support for HTTP downloads.';
  26. SErrBackupFailed = 'Backup of file "%s" to file "%s" failed.';
  27. SErrUnknownProtocol = 'Unknown download protocol: "%s"';
  28. SErrNoSuchFile = 'File "%s" does not exist.';
  29. SErrWGetDownloadFailed = 'Download failed: wget reported exit status %d.';
  30. SErrDownloadFailed = 'Download failed: %s';
  31. SErrInvalidVerbosity = 'Invalid verbosity string: "%s"';
  32. SErrInvalidCommand = 'Invalid command: %s';
  33. SErrChangeDirFailed = 'Could not change directory to "%s"';
  34. SErrCorruptPackagesFile = 'Packages file "%s" is corrupt, delete file manual and retry';
  35. SErrHTTPGetFailed = 'HTTP Download failed.';
  36. SErrLoginFailed = 'FTP LOGIN command failed.';
  37. SErrCWDFailed = 'FTP CWD "%s" command failed.';
  38. SErrGETFailed = 'FTP GET "%s" command failed.';
  39. SWarnFPMKUnitNotFound = 'Package "fpmkunit" is not found, using internal bootstrap procedure';
  40. SLogGeneratingFPMake = 'Generating fpmake.pp';
  41. SLogNotCompilingFPMake = 'Skipping compiling of fpmake.pp, fpmake executable already exists';
  42. SLogCommandLineAction = 'Adding action from commandline: "%s %s"';
  43. SLogRunAction = 'Action: "%s %s"';
  44. SLogExecute = 'Executing: "%s %s"';
  45. SLogChangeDir = 'CurrentDir: "%s"';
  46. SLogDownloading = 'Downloading "%s" to "%s"';
  47. SLogUnzippping = 'Unzipping "%s"';
  48. SLogZippping = 'Zipping "%s"';
  49. SLogLoadingGlobalConfig = 'Loading global configuration from "%s"';
  50. SLogLoadingCompilerConfig = 'Loading compiler configuration from "%s"';
  51. SLogLoadingFPMakeCompilerConfig = 'Loading compiler configuration for fpmake building from "%s"';
  52. SLogGeneratingGlobalConfig = 'Generating default global configuration in "%s"';
  53. SLogDetectedCompiler = 'Detected compiler "%s" (version %s for %s)';
  54. SLogDetectedFPCDIR = 'Detected %s FPCDIR "%s"';
  55. SLogGeneratingCompilerConfig = 'Generating default compiler configuration in "%s"';
  56. SLogLoadingPackagesFile = 'Loading available packages from "%s"';
  57. SLogLoadingStatusFile = 'Loading local status from "%s"';
  58. SLogSavingStatusFile = 'Saving local status to "%s"';
  59. SDbgFound = 'Found';
  60. SDbgNotFound = 'Not Found';
  61. SDbgDirectoryExists = 'Directory "%s" %s';
  62. SDbgFileExists = 'File "%s" %s';
  63. SDbgBackupFile = 'Creating Backup File "%s"';
  64. implementation
  65. end.