home *** CD-ROM | disk | FTP | other *** search
- #include "part.h"
-
- extern char help_eng[];
-
- void messages_eng(void)
- {
- HEADER_MAIN = "Partition Manager (Version 2.31) January 12, 1998 (C) Mikhail Ranish";
-
- HEADER_GET = "Hard Disk .. Getting hard disk parameters ...";
- HEADER_HD = "Hard Disk .. ";
- HEADER_EXT = "Extended DOS ";
- HEADER_EXT2 = "EMBR Level.. ";
- HEADER_READ = "Reading partition table ...";
-
- HEADER_CHS = " .... Mbytes [ .... cylinders x ... heads x ... sectors ]";
- HEADER_CHS2 = " File Starting Ending Partition";
- HEADER_CHS3 = "# Active System Type Cyl Side Sect Cyl Side Sect Size [KB]";
- /* "1 Yes 123456789_123456789_123 9999 9999 9999 9999 9999 9999 11,111,111" */
-
- HEADER_LBA = " .... Mbytes [ 11,111,111 sectors ]";
- HEADER_LBA2 = " File Starting Sectors Ending Partition";
- HEADER_LBA3 = "# Active System Type sector in part sector Size [KB]";
- /* "1 Yes 123456789_123456789_123123456789 1234567890 1234567890 11,111,111" */
-
- HEADER_SYSTYPE = " ID File System Type Setup Format PrintInfo";
-
- MENU_HELP = " - Help";
- MENU_SAVE = " - Save Changes";
- MENU_UNDO = " - Undo";
- MENU_MODE = " - Mode";
- MENU_DISK = " - Disk";
- MENU_QUIT = " - Quit";
-
- MENU_HIDE = " - Hide partition";
- MENU_FORMAT = " - Format partition";
- MENU_VERIFY = " - Verify disk surface";
-
- MENU_SAVE_FILE = " - Save MBR to a file";
- MENU_LOAD_FILE = " - Load MBR from a file";
- MENU_INST_CODE = " - Install IPL from a file";
-
- MENU_INSTALL = " - Install IPL with virus detection, . - without";
- MENU_UNINSTALL = " - Uninstall IPL by installing a standard DOS IPL";
-
- MENU_INST_EXT = " - Install a \"non bootable\" dummy boot record ";
- MENU_MOVE_PRI = " - Move this partition to MBR = make it bootable ";
-
- ERROR_MALLOC = "Couldn't allocate memory with malloc.";
- ERROR_DISK_INFO = "Error getting hard disk parameters.";
- ERROR_READ_MBR = "Error reading MBR from disk.";
-
-
- HINT_ACTIVE = " Space - toggle active flag Enter - setup partition Del - clear record";
- HINT_SYSTYPE = " Ins - select system type Enter - setup partition Del - clear record";
- HINT_LOC_CHS = " You can use + and - keys Cyl=%lu..%lu Side=0..%d Sect=1..%d ";
- HINT_LOC_LBA = " You can use + and - keys Starting=1..%lu Sectors=1..%lu ";
-
- WARN_CONFLICT = " Some records are conflicting with disk geometry. Press F1 for help.";
- ERROR_INVALID = " One or more records in the partition table is invalid.";
-
- WARN_WRITE_MBR = " Error writing MBR to disk. ";
- WARN_LOAD_FILE = " Error reading from a file. ";
- WARN_SAVE_FILE = " Error writing into a file. ";
-
- MESG_MBR_SAVED = " MBR was saved to disk. ";
- MESG_INSTALL = " New IPL code was installed in memory. Press F2 to commit changes to disk.";
- MESG_UNINSTALL = " Standard IPL code was installed in memory. Press F2 to commit changes. ";
- MESG_FILE_SAVED= " File was saved to disk. ";
- MESG_FILE_LOADED= " File was loaded from disk into memory. Press F2 to commit changes to disk.";
- MESG_NOT_SAVED = " MBR was modified. Please SAVE or UNDO changes first. ";
- MESG_ONLY_1HD = " You have only one hard drive. ";
-
- ERROR_NO_HELP = "Requested help topic was not found.";
-
- ERROR_NO_FORMAT = "Format module is not available for this file system.";
- ERROR_NO_SETUP = "Setup module is not available for this file system.";
- ERROR_NO_PRINT = "Printinfo module is not available for this file system.";
-
- PRESS_ESC = " Press ESC to cancel ";
- PROMPT_FILE = "Enter file name: ";
- PROMPT_FSTYPE = "Enter file system id: ";
- PROMPT_FORMAT = "Optional foramt arguments: ";
-
- MESG_VERIFYING = "^Verifying...";
- MESG_FORMATTING = "^Formatting...";
-
- MESG_FORMAT_OK = " Format completed. ";
- WARN_FORMAT_CANCEL = " Format canceled by user. ";
- ERROR_FORMAT_FAILED = " Format failed. ";
-
- MESG_VERIFY_OK = " Verification completed. No bad sectors found. ";
- WARN_VERIFY_CANCEL = " Verification canceled by user. ";
- ERROR_VERIFY_FAILED = " One or more bad sectors found on disk. ";
-
- ERROR_FIX_FIRST = "You should correct partition settings first.";
- ERROR_FORMAT_GEN = "General failure formatting the disk.";
- ERROR_FORMAT_WIN95 = "Please, exit to the DOS prompt to do this type of formatting.";
- ERROR_FORMAT_EMPTY = "You cannot format or verify empty partition.";
- ERROR_FORMAT_FRACTION = "Cannot format partition with fractional sides on the ends.";
-
- HELP_TEXT = help_eng;
- }/* english messages*/
-