fpstring.pas 2.0 KB

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