exprstrs.inc 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. $ id: $
  3. Copyright (c) 2000 by Marco van de Voort([email protected])
  4. member of the Free Pascal development team
  5. See the file COPYING.FPC, included in this distribution,
  6. for details about the copyright. (LGPL)
  7. Some resourcestrings.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11. **********************************************************************}
  12. resourcestring
  13. SEvalUnknownParameterType='QuickEvaluate: unknown variable type for parameter "%s".';
  14. SEvalUndefinedVar ='QuickEvaluate: No value for parameter "%s".';
  15. SEvalIE ='TEvaluator: Internal Error: ';
  16. SEvalStackDepthExceeded ='TEvaluator: Stack depth Evaluate exceeded';
  17. SEvalBadNumberOfVars ='TEvaluator: Invalid number of variables';
  18. SParsIE ='TBaseExprParser: Internal Error:';
  19. SParseRPNOverflow ='TBaseExprParser: RPN stack overflow';
  20. SParseRPNUnderflow ='TBaseExprParser: RPN stack underflow';
  21. SParsDiv0 ='TBaseExprParser: RPN Division by zero in parser';
  22. SParsOpOverflow ='TBaseExprParser: Operator stack Overflow';
  23. SParsOpUnderflow ='TBaseExprParser: Operator stack Underflow';
  24. SNILDeref ='NIL dereference';
  25. SExprIE ='TExpression: Internal error: ';
  26. SExprNotInt ='TExpression: This is not an integer';
  27. SExprNotFloat ='TExpression: This is not a float';
  28. SExprInvmsg ='TExpression: Inv(x) evaluates to 1/0';
  29. SExprInvSimp ='TExpression: Division by 0 encountered while simplifying';
  30. {
  31. $Log$
  32. Revision 1.1 2002/12/15 21:01:22 marco
  33. Initial revision
  34. }
  35.