fpstring.pas 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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.4 2000-05-02 08:42:28 pierre
  32. * new set of Gabor changes: see fixes.txt
  33. Revision 1.3 2000/04/18 11:42:37 pierre
  34. lot of Gabor changes : see fixes.txt
  35. Revision 1.2 2000/02/07 08:29:13 michael
  36. [*] the fake (!) TOKENS.PAS still contained the typo bug
  37. FSplit(,n,d,e) (correctly FSplit(,d,n,e))
  38. [*] CodeComplete had a very ugly bug - coordinates were document-relative
  39. (instead of being screen-relative)
  40. [*] TResourceStream didn't count the size of the resource names when
  41. determining the file size and this could lead to the last resources not
  42. loaded correctly
  43. [+] Ctrl-Enter in editor now tries to open the file at cursor
  44. [+] CodeComplete option added to Options|Environment|Editor
  45. [+] user interface for managing CodeComplete implemented
  46. [+] user interface for CodeTemplates implemented
  47. [+] CodeComplete wordlist and CodeTemplates stored in desktop file
  48. [+] help topic size no longer limited to 64KB when compiled with FPC
  49. Revision 1.1 2000/01/23 21:25:17 florian
  50. + start of internationalization support
  51. }