pkgmessages.pp 4.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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. SErrExecutionFPMake = 'Execution of FPMake %s failed';
  21. SErrException = 'The FPC Package tool encountered the following error:';
  22. SErrActionAlreadyRegistered= 'Action "%s" is already registered';
  23. SErrActionNotFound = 'Action "%s" is not supported';
  24. SErrFailedToCompileFPCMake = 'Could not compile fpmake driver program';
  25. SErrNoFTPDownload = 'This binary has no support for FTP downloads.';
  26. SErrNoHTTPDownload = 'This binary has no support for HTTP downloads.';
  27. SErrBackupFailed = 'Backup of file "%s" to file "%s" failed.';
  28. SErrUnknownProtocol = 'Unknown download protocol: "%s"';
  29. SErrNoSuchFile = 'File "%s" does not exist.';
  30. SErrWGetDownloadFailed = 'Download failed: wget reported exit status %d.';
  31. SErrDownloadFailed = 'Download failed: %s';
  32. SErrInvalidVerbosity = 'Invalid verbosity string: "%s"';
  33. SErrInvalidCommand = 'Invalid command: %s';
  34. SErrChangeDirFailed = 'Could not change directory to "%s"';
  35. SErrCorruptPackagesFile = 'Packages file "%s" is corrupt, delete file manual and retry';
  36. SErrHTTPGetFailed = 'HTTP Download failed.';
  37. SErrLoginFailed = 'FTP LOGIN command failed.';
  38. SErrCWDFailed = 'FTP CWD "%s" command failed.';
  39. SErrGETFailed = 'FTP GET "%s" command failed.';
  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. SLogFPMKUnitDepVersion = 'Checking for %s %s, installed %s, available %s';
  60. SLogFPMKUnitDepTooOld = 'Minimum version of %s is not installed, using internal fpmkunit with limited functionality';
  61. SDbgFound = 'Found';
  62. SDbgNotFound = 'Not Found';
  63. SDbgDirectoryExists = 'Directory "%s" %s';
  64. SDbgFileExists = 'File "%s" %s';
  65. SDbgBackupFile = 'Creating Backup File "%s"';
  66. SDbgPackageDependency = 'Dependency on package %s %s, installed %s, available %s (%s)';
  67. implementation
  68. end.