wconsts.pas 918 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. 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.