fpstring.pas 892 B

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