wconsts.pas 924 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. {$mode objfpc}
  11. {$H-}
  12. unit wconsts;
  13. interface
  14. uses Dos;
  15. const
  16. { History ID }
  17. FileId = 101;
  18. TextFindId = 105;
  19. TextReplaceID = 106;
  20. GotoID = 107;
  21. TextGrepId = 108;
  22. GrepArgsId = 109;
  23. {$ifdef LANG_HUN}
  24. {$i wconstsh.inc} { Hungarian language file }
  25. {$else}
  26. {$ifdef LANG_GER}
  27. {$i wconstsg.inc} { German language file }
  28. {$else}
  29. {$i wconstse.inc} { English language file }
  30. {$endif}
  31. {$endif}
  32. implementation
  33. end.