12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- unit pkgmessages;
- {$mode objfpc}{$H+}
- interface
- Resourcestring
- SErrInValidArgument = 'Invalid command-line argument at position %d : %s';
- SErrNeedArgument = 'Option at position %d (%s) needs an argument';
- SErrMissingFPC = 'Could not find a fpc executable in the PATH';
- SErrMissingFPMake = 'Missing configuration fpmake.pp';
- SErrMissingMakefilefpc = 'Missing configuration Makefile.fpc';
- SErrRunning = 'The FPC make tool encountered the following error:';
- SErrActionAlreadyRegistered= 'Action "%s" is already registered';
- SErrActionNotFound = 'Action "%s" is not supported';
- SErrFailedToCompileFPCMake = 'Could not compile fpmake driver program';
- SErrNoFTPDownload = 'This binary has no support for FTP downloads.';
- SErrNoHTTPDownload = 'This binary has no support for HTTP downloads.';
- SErrBackupFailed = 'Backup of file "%s" to file "%s" failed.';
- SErrUnknownProtocol = 'Unknown download protocol: "%s"';
- SErrNoSuchFile = 'File "%s" does not exist.';
- SErrWGetDownloadFailed = 'Download failed: wget reported exit status %d.';
- SErrDownloadFailed = 'Download failed: %s';
- SErrInvalidVerbosity = 'Invalid verbosity string: "%s"';
- SErrInvalidCommand = 'Invalid command: %s';
- SErrChangeDirFailed = 'Could not change directory to "%s"';
-
- SErrHTTPGetFailed = 'HTTP Download failed.';
- SErrLoginFailed = 'FTP LOGIN command failed.';
- SErrCWDFailed = 'FTP CWD "%s" command failed.';
- SErrGETFailed = 'FTP GET "%s" command failed.';
-
- SLogGeneratingFPMake = 'Generating fpmake.pp';
- SLogNotCompilingFPMake = 'Skipping compiling of fpmake.pp, fpmake executable already exists';
- SLogCommandLineAction = 'Adding action from commandline: "%s %s"';
- SLogRunAction = 'Action: "%s %s"';
- SLogExecute = 'Executing: "%s %s"';
- SLogChangeDir = 'CurrentDir: "%s"';
- SLogLoadingCompilerConfig = 'Loading compiler configuration from "%s"';
- SLogGeneratingCompilerConfig = 'Generating default compiler configuration in "%s"';
- SLogLoadingRepository = 'Loading repository data from "%s"';
- SLogLoadingVersions = 'Loading versions data from "%s"';
- implementation
- end.
|