fpstring.pas 2.1 KB

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