wconsts.pas 1005 B

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