File: fpdebugstringconstants.pas

package info (click to toggle)
lazarus 4.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 275,760 kB
  • sloc: pascal: 2,341,904; xml: 509,420; makefile: 348,726; cpp: 93,608; sh: 3,387; java: 609; perl: 297; sql: 222; ansic: 137
file content (53 lines) | stat: -rw-r--r-- 2,429 bytes parent folder | download | duplicates (3)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
unit FpDebugStringConstants;

{$mode objfpc}{$H+}

interface

uses
  Classes, SysUtils;

resourcestring
  drsKeyForAddress = 'Key for Address';
  drsKeyForTypename = 'Key for Typename';

  drsFunctionName = 'Function name';
  drsCallSysVarToLStr = 'Call SysVarToLStr';
  drsCallJsonForDebug = 'Call JsonForDebug';
  drsConverterNormalizeVariant = 'Convert variant to value type';
  drsRunAllThreadsWhileEval = 'Run all threads while evaluating';

  LazInternalErr                           = 'Internal error: %1:s';

  LazErrSymbolNotFound_p                   = 'Identifier not found: "%1:s"%2:s';
  LazErrIndexOutOfRange                    = 'Index out of range: %1:d';
  LazErrTypeNotIndexable                   = 'The value has no index';
  LazErrExpectedOrdinalVal_p               = 'Expected an ordinal value, but found ''%1:s''%2:s';
  LazErrCannotCastToPointer_p              = 'Can''t cast value to pointer ''%1:s''%2:s';
  LazErrCannotDeref_p                      = 'Can''t dereference expression ''%1:s''%2:s';

  LazErrPasParserEmptyExpression           = 'Empty Expression';
  LazErrPasParserUnexpectedEndOfExpression = 'Unexpected end of expression after ''%1:s''';
  LazErrPasParserUnexpectedToken_p         = 'Unexpected token ''%1:s''%2:s';
  LazErrPasParserUnknownIntrinsic_p        = 'Intrinsic function ''%1:s'' not found%2:s';

  LazErrPasParserMissingOpenBracket_p      = 'No opening bracket for ''%1:s'' found%2:s';
  LazErrPasParserWrongOpenBracket_p        = 'Mismatched opening bracket (''%3:s'' at pos %2:d) for ''%1:s'' found%4:s';
  LazErrPasParserMissingIndexExpression    = 'Expected Expression but found closing bracket: ''%1:s'' at pos %2:d';
  LazErrPasParserMissingExprAfterComma     = 'Expected Expression after Comma, but found closing bracket %1:s at pos %2:d';
  LazErrPasParserIndexError_Wrapper        = 'Index error at pos %2:d for ''%1:s''[]: %3:s';
  LazErrPasParserUnterminatedString_p      = 'String not terminated%1:s';
  LazErrPasParserExpectedNumber_p          = 'Expected Number, but found ''%1:s''%2:s';


  (* Any resourcestring endig in *_p may or may not have one of the below included.
     The value may also be an empty string instead.
  *)
  LazErrPasParser_AtStart                  = ' at start of expression';
  LazErrPasParser_PositionAfter            = ' at pos %1:d after ''%2:s''';
  LazErrPasParser_Position                 = ' at pos %1:d';

implementation

end.