home *** CD-ROM | disk | FTP | other *** search
- unit ReConst;
-
- interface
-
- uses Windows;
-
- const
- ENGLISH = (SUBLANG_ENGLISH_US shl 10) or LANG_ENGLISH;
- GERMAN = (SUBLANG_GERMAN shl 10) or LANG_GERMAN;
-
- resourcestring
- SUntitled = 'Untitled';
- SPercent_s = '%s - %s';
- SSaveChanges = 'Save Changes?';
- SConfirmation = 'Confirmation';
- SNumberbetween = 'The number must be between 1 and 1638.';
- SEnLanguage = 'English';
- SDeLanguage = 'German';
- SSvLanguage = 'Swedish';
-
- implementation
-
- end.