File: rstrings.pas

package info (click to toggle)
licenserecon 12.0
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 372 kB
  • sloc: pascal: 1,375; makefile: 33; perl: 31; xml: 9; sh: 2
file content (38 lines) | stat: -rw-r--r-- 770 bytes parent folder | download
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.