wconsts.pas 874 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. {$ifdef LANG_HUN}
  15. {$i wconstsh.inc} { Hungarian language file }
  16. {$else}
  17. {$ifdef LANG_GER}
  18. {$i wconstsg.inc} { German language file }
  19. {$else}
  20. {$i wconstse.inc} { English language file }
  21. {$endif}
  22. {$endif}
  23. implementation
  24. end.
  25. {
  26. $Log$
  27. Revision 1.1 2000-07-13 09:48:37 michael
  28. + Initial import
  29. Revision 1.1 2000/06/16 09:30:01 pierre
  30. * new files from Gabor
  31. }