1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
unit rstrings;
{$mode delphi}
interface
resourcestring
// lrc.pas
rsCff = 'Cannot find the file';
// compare.pas
rsNdf = 'No significant differences found';
rsSiu = 'option in use. Not all differences shown';
//dep5.pas
rsRc = 'Reading';
rsMFP = 'Missing Files: Paragraph for';
rsID5 = 'Invalid DEP-5 header in';
rsGPO = 'Globing pattern out of order above line';
//filedata.pas
rsSfp = 'Superfluous file pattern';
// licensechecking.pas
rsRl = 'Running';
rsFtr = 'Failed to run';
rsHul = 'has unused license';
// loadsourcefiles.pas
rsPST = 'Parsing Source Tree';
rsFPS = 'Failed to parse Source Tree';
//options.pas
rsIuo = 'Ignoring unknown option';
implementation
end.
|