wconsts.pas 902 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. This file is part of the Free Pascal Integrated Development Environment
  3. Copyright (c) 2000 by B‚rczi G bor
  4. Strings for common utilities
  5. This program is distributed in the hope that it will be useful,
  6. but WITHOUT ANY WARRANTY; without even the implied warranty of
  7. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  8. **********************************************************************}
  9. {$i globdir.inc}
  10. unit wconsts;
  11. interface
  12. uses Dos;
  13. const
  14. { History ID }
  15. FileId = 101;
  16. TextFindId = 105;
  17. TextReplaceID = 106;
  18. GotoID = 107;
  19. TextGrepId = 108;
  20. GrepArgsId = 109;
  21. {$ifdef LANG_HUN}
  22. {$i wconstsh.inc} { Hungarian language file }
  23. {$else}
  24. {$ifdef LANG_GER}
  25. {$i wconstsg.inc} { German language file }
  26. {$else}
  27. {$i wconstse.inc} { English language file }
  28. {$endif}
  29. {$endif}
  30. implementation
  31. end.