fclel.mc 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. ; $Id: fclel.mc,v 1.1 2003/02/19 20:25:16 michael Exp $
  2. ; This file is part of the Free Pascal run time library.
  3. ; Copyright (c) 2003 by the Free Pascal development team
  4. ;
  5. ; Messages for event logging facility
  6. ;
  7. ; See the file COPYING.FPC, included in this distribution,
  8. ; for details about the copyright.
  9. ;
  10. ; This program is distributed in the hope that it will be useful,
  11. ; but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  13. ;
  14. ;
  15. ;******************************************************
  16. ; Default messages for FPC eventlog class
  17. ;******************************************************
  18. ; Categories are mapped from 1 to 4
  19. ; 1 : etInfo
  20. ; 2 : etWarning
  21. ; 3 : etError
  22. ; 4 : etDebug
  23. ;
  24. ; Categories (1-4)
  25. MessageId=1
  26. SymbolicName=ECInfo
  27. Language=English
  28. Information
  29. .
  30. MessageId=2
  31. SymbolicName=ECWarning
  32. Language=English
  33. Warning
  34. .
  35. MessageId=3
  36. SymbolicName=ECError
  37. Language=English
  38. Error
  39. .
  40. MessageId=4
  41. SymbolicName=ECDebug
  42. Language=English
  43. Debug
  44. .
  45. ;
  46. ; Message Definitions (1000-1004)
  47. ;
  48. MessageId=1000
  49. Language=English
  50. %1.
  51. .
  52. ; Information
  53. MessageId=1001
  54. Language=English
  55. Information: %1
  56. .
  57. ; Warnings
  58. MessageId=1002
  59. Language=English
  60. Warning: %1
  61. .
  62. ; Error
  63. MessageId=1003
  64. Language=English
  65. Error: %1
  66. .
  67. ; Debug
  68. MessageId=1004
  69. Language=English
  70. Debug: %1
  71. .