home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 2000 May / PCP163A.iso / Runimage / Cbuilder4 / Examples / Apps / RichEdit / RECONST.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1999-01-26  |  500 b   |  23 lines

  1. unit ReConst;
  2.  
  3. interface                      
  4.   
  5. uses Windows;
  6.  
  7. const
  8.   ENGLISH = (SUBLANG_ENGLISH_US shl 10) or LANG_ENGLISH;
  9.   GERMAN  = (SUBLANG_GERMAN shl 10) or LANG_GERMAN;
  10.  
  11. resourcestring
  12.   SUntitled = 'Untitled';
  13.   SPercent_s = '%s - %s';
  14.   SSaveChanges = 'Save Changes?';
  15.   SConfirmation = 'Confirmation';
  16.   SNumberbetween = 'The number must be between 1 and 1638.';
  17.   SEnLanguage = 'English';
  18.   SDeLanguage = 'German';
  19.   SSvLanguage = 'Swedish';
  20.  
  21. implementation
  22.  
  23. end.