fpstring.pas 978 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. $Id$
  3. This file is part of the Free Pascal Integrated Development Environment
  4. Copyright (c) 2000 by Florian Klaempfl
  5. Strings for menus, dialogs etc
  6. See the file COPYING.FPC, included in this distribution,
  7. for details about the copyright.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11. **********************************************************************}
  12. {$i globdir.inc}
  13. {$ifdef USERESSTRINGS}{$mode objfpc}{$endif}
  14. unit fpstring;
  15. interface
  16. uses
  17. fpconst;
  18. {$ifdef LANG_HUN}
  19. {$i fpstrh.inc} { Hungarian language file }
  20. {$else}
  21. {$ifdef LANG_GER}
  22. {$i fpstrg.inc} { German language file }
  23. {$else}
  24. {$i fpstre.inc} { English language file }
  25. {$endif}
  26. {$endif}
  27. implementation
  28. end.
  29. {
  30. $Log$
  31. Revision 1.2 2002-09-07 15:40:44 peter
  32. * old logs removed and tabs fixed
  33. }