pkgmessages.pp 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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. SErrCompileFailureFPMake = 'Could not compile fpmake driver program';
  25. SErrCompileFailureFPMakeTryRecovery = 'Could not compile fpmake driver program, try adding "--recovery"';
  26. SErrNoFTPDownload = 'This binary has no support for FTP downloads.';
  27. SErrNoHTTPDownload = 'This binary has no support for HTTP downloads.';
  28. SErrBackupFailed = 'Backup of file "%s" to file "%s" failed.';
  29. SErrUnknownProtocol = 'Unknown download protocol: "%s"';
  30. SErrNoSuchFile = 'File "%s" does not exist.';
  31. SErrDownloadFailed = '%s Download of "%s" failed: %s';
  32. SErrInvalidLogLevels = '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. SErrCorruptMirrorsFile = 'Mirrors file "%s" is corrupt, delete file manual and retry';
  37. SErrPackageIsLocal = 'Operation not supported for local packages';
  38. SErrConvertFPMakeExists = 'Found existing fpmake.pp, aborting conversion';
  39. SErrFailedToSelectMirror = 'Could not select a mirror, run update and retry';
  40. SErrUnsupportedConfigVersion = 'Configuration file "%s" is too old, delete file manual and retry';
  41. SErrPackageDoesNotSupportTarget = 'Package %s does not support %s';
  42. SErrHTTPGetFailed = 'HTTP Download failed.';
  43. SErrLoginFailed = 'FTP LOGIN command failed.';
  44. SErrCWDFailed = 'FTP CWD "%s" command failed.';
  45. SErrGETFailed = 'FTP GET "%s" command failed.';
  46. SErrBrokenPackagesFound = 'Found broken packages, run "fppkg fixbroken" first';
  47. SErrManifestNoSinglePackage = 'Manifest file "%s" does not contain exactly one package';
  48. SLogGeneratingFPMake = 'Generating fpmake.pp';
  49. SLogNotCompilingFPMake = 'Skipping compiling of fpmake.pp, fpmake executable already exists';
  50. SLogCommandLineAction = 'Adding action from commandline: "%s %s"';
  51. SLogRunAction = 'Action: "%s"';
  52. SLogExecute = 'Executing: "%s %s"';
  53. SLogChangeDir = 'CurrentDir: "%s"';
  54. SLogDownloading = 'Downloading "%s" to "%s"';
  55. SLogUnzippping = 'Unzipping "%s"';
  56. SLogZippping = 'Zipping "%s"';
  57. SLogLoadingGlobalConfig = 'Loading global configuration from "%s"';
  58. SLogLoadingCompilerConfig = 'Loading compiler configuration from "%s"';
  59. SLogLoadingFPMakeCompilerConfig = 'Loading compiler configuration for fpmake building from "%s"';
  60. SLogGeneratingGlobalConfig = 'Generating default global configuration in "%s"';
  61. SLogDetectedCompiler = 'Detected compiler "%s" (version %s for %s)';
  62. SLogDetectedFPCDIR = 'Detected %s FPCDIR "%s"';
  63. SLogGeneratingCompilerConfig = 'Generating default compiler configuration in "%s"';
  64. SLogLoadingPackagesFile = 'Loading available packages from "%s"';
  65. SLogLoadingMirrorsFile = 'Loading available mirrors from "%s"';
  66. SLogFindInstalledPackages = 'Finding installed packages in "%s"';
  67. SLogSavingStatusFile = 'Saving local status to "%s"';
  68. SLogFPMKUnitDepVersion = 'Checking for %s %s, installed %s, available %s';
  69. SLogFPMKUnitDepTooOld = 'Minimum version of %s is not installed, using internal fpmkunit with limited functionality';
  70. SLogSelectedMirror = 'Selected mirror "%s"';
  71. SLogUpgradingConfig = 'Configuration file "%s" is updated with new configuration settings';
  72. SLogPackageDependency = 'Dependency on package %s %s, installed %s, available %s (%s)';
  73. SLogPackageChecksumChanged = 'Package %s needs to be rebuild, dependency %s is modified';
  74. SLogCheckBrokenDependenvies= 'Checking for broken dependencies';
  75. SLogGlobalCfgHeader = 'Using global configuration:';
  76. SLogGlobalCfgRemoteMirrorsURL = ' RemoteMirrorsURL: "%s"';
  77. SLogGlobalCfgRemoteRepository = ' RemoteRepository: "%s"';
  78. SLogGlobalCfgLocalRepository = ' LocalRepository: "%s"';
  79. SLogGlobalCfgBuildDir = ' BuildDir: "%s"';
  80. SLogGlobalCfgArchivesDir = ' ArchivesDir: "%s"';
  81. SLogGlobalCfgCompilerConfigDir = ' CompilerConfigDir: "%s"';
  82. SLogGlobalCfgDefaultCompilerConfig = ' DefaultCompilerConfig: "%s"';
  83. SLogGlobalCfgFPMakeCompilerConfig = ' FPMakeCompilerConfig: "%s"';
  84. SLogGlobalCfgDownloader = ' Downloader: "%s"';
  85. SLogCompilerCfgHeader = 'Using %scompiler configuration:';
  86. SLogCompilerCfgCompiler = ' Compiler: "%s"';
  87. SLogCompilerCfgTarget = ' Target: "%s"';
  88. SLogCompilerCfgVersion = ' Version: "%s"';
  89. SLogCompilerCfgGlobalInstallDir = ' GlobalInstallDir: "%s"';
  90. SLogCompilerCfgLocalInstallDir = ' LocalInstallDir: "%s"';
  91. SDbgFound = 'Found';
  92. SDbgNotFound = 'Not Found';
  93. SDbgDirectoryExists = 'Directory "%s" %s';
  94. SDbgFileExists = 'File "%s" %s';
  95. SDbgBackupFile = 'Creating Backup File "%s"';
  96. SDbgPackageMultipleLocations = 'Multiple installations found for package %s, using installation "%s"';
  97. SDbgPackageDependencyOtherTarget = 'Dependency on package %s is not for %s';
  98. SDbgObsoleteDependency = 'Obsolete dependency found on package %s';
  99. implementation
  100. end.