~ubuntu-branches/debian/lenny/fpc/lenny

« back to all changes in this revision

Viewing changes to fpcsrc/utils/fppkg/pkgmessages.pp

  • Committer: Bazaar Package Importer
  • Author(s): Mazen Neifer, Torsten Werner, Mazen Neifer
  • Date: 2008-05-17 17:12:11 UTC
  • mfrom: (3.1.9 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080517171211-9qi33xhd9evfa0kg
Tags: 2.2.0-dfsg1-9
[ Torsten Werner ]
* Add Mazen Neifer to Uploaders field.

[ Mazen Neifer ]
* Moved FPC sources into a version dependent directory from /usr/share/fpcsrc
  to /usr/share/fpcsrc/${FPCVERSION}. This allow installing more than on FPC
  release.
* Fixed far call issue in compiler preventing building huge binearies.
  (closes: #477743)
* Updated building dependencies, recomennded and suggested packages.
* Moved fppkg to fp-utils as it is just a helper tool and is not required by
  compiler.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
unit pkgmessages;
 
2
 
 
3
{$mode objfpc}{$H+}
 
4
 
 
5
interface
 
6
 
 
7
 
 
8
Resourcestring
 
9
  SWarning                   = 'Warning: ';
 
10
 
 
11
  SErrInValidArgument        = 'Invalid command-line argument at position %d : %s';
 
12
  SErrNeedArgument           = 'Option at position %d (%s) needs an argument';
 
13
  SErrMissingFPC             = 'Could not find a fpc executable in the PATH';
 
14
  SErrInvalidFPCInfo         = 'Compiler returns invalid information, check if fpc -iV works';
 
15
  SErrMissingFPMake          = 'Missing configuration fpmake.pp';
 
16
  SErrMissingMakefilefpc     = 'Missing configuration Makefile.fpc';
 
17
  SErrMissingDirectory       = 'Missing directory "%s"';
 
18
  SErrNoPackageSpecified     = 'No package specified';
 
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
 
 
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
 
 
40
  SWarnFPMKUnitNotFound      = 'Unit directory of fpmkunit is not found, compiling fpmake may file';
 
41
 
 
42
  SLogGeneratingFPMake       = 'Generating fpmake.pp';
 
43
  SLogNotCompilingFPMake     = 'Skipping compiling of fpmake.pp, fpmake executable already exists';
 
44
  SLogCommandLineAction      = 'Adding action from commandline: "%s %s"';
 
45
  SLogRunAction              = 'Action: "%s %s"';
 
46
  SLogExecute                = 'Executing: "%s %s"';
 
47
  SLogChangeDir              = 'CurrentDir: "%s"';
 
48
  SLogDownloading            = 'Downloading "%s" to "%s"';
 
49
  SLogUnzippping             = 'Unzipping "%s"';
 
50
  SLogZippping               = 'Zipping "%s"';
 
51
  SLogLoadingGlobalConfig    = 'Loading global configuration from "%s"';
 
52
  SLogLoadingCompilerConfig  = 'Loading compiler configuration from "%s"';
 
53
  SLogGeneratingGlobalConfig = 'Generating default global configuration in "%s"';
 
54
  SLogDetectedCompiler       = 'Detected compiler "%s" (version %s for %s)';
 
55
  SLogDetectedFPCDIR         = 'Detected FPCDIR "%s" will be used installation';
 
56
  SLogGeneratingCompilerConfig  = 'Generating default compiler configuration in "%s"';
 
57
  SLogLoadingPackagesFile    = 'Loading packages information from "%s"';
 
58
  SLogLoadingVersionsFile    = 'Loading local versions information from "%s"';
 
59
 
 
60
 
 
61
implementation
 
62
 
 
63
end.
 
64