diff options
| author | 2024-04-25 21:24:10 +0100 | |
|---|---|---|
| committer | 2024-04-25 22:32:27 +0000 | |
| commit | 2d04cacc5322951f187bb17e017c12920ac8ebe2 (patch) | |
| tree | 80ee017efa878dfd5344b44249e6a241f2a7f6e2 /v4.0/src/MAPPER/MESSAGES.INC | |
| parent | Merge pull request #430 from jpbaltazar/typoptbr (diff) | |
| download | ms-dos-main.tar.gz ms-dos-main.tar.xz ms-dos-main.zip | |
Diffstat (limited to 'v4.0/src/MAPPER/MESSAGES.INC')
| -rw-r--r-- | v4.0/src/MAPPER/MESSAGES.INC | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/v4.0/src/MAPPER/MESSAGES.INC b/v4.0/src/MAPPER/MESSAGES.INC new file mode 100644 index 0000000..e2286e0 --- /dev/null +++ b/v4.0/src/MAPPER/MESSAGES.INC | |||
| @@ -0,0 +1,88 @@ | |||
| 1 | page | ||
| 2 | |||
| 3 | ; Restore Messages 0 | ||
| 4 | |||
| 5 | MSG0 equ 0 | ||
| 6 | INSERT_SOURCE_DISK equ 1635 ;925 | ||
| 7 | SOURCE_TARGET_SAME equ 1642 ;932 | ||
| 8 | INVALID_NUM_PARM equ 1643 ;933 | ||
| 9 | INVALID_DRIVE equ 1644 ;934 | ||
| 10 | NO_FILE_TO_RESTORE equ 1645 ;935 | ||
| 11 | INVALID_PARM equ 1646 ;936 | ||
| 12 | LAST_FILE_NOT_RESTORED equ 1648 ;938 | ||
| 13 | SOURCE_NO_BACKUP_FILE equ 1649 ;939 | ||
| 14 | INSUFFICIENT_MEMORY equ 8 ;8 | ||
| 15 | FILE_SEQUENCE_ERROR equ 1651 ;941 | ||
| 16 | FILE_CREATION_ERROR equ 1652 ;942 | ||
| 17 | TARGET_IS_FULL equ 1653 ;943 | ||
| 18 | NOT_ABLE_TO_RESTORE_FILE equ 1655 ;945 | ||
| 19 | INVALID_DOS_VER equ 1210 ;500 | ||
| 20 | FILE_SHARING_ERROR equ 1647 ;937 | ||
| 21 | FILE_WAS_CHANGED equ 1638 ;928 | ||
| 22 | DISK_OUT_OF_SEQUENCE equ 1636 ;926 | ||
| 23 | FILE_IS_READONLY equ 1637 ;927 | ||
| 24 | SYSTEM_FILE_RESTORED equ 1639 ;929 | ||
| 25 | FILES_WERE_BACKUP_ON equ 1640 ;930 | ||
| 26 | RESTORE_FILE_FROM_DRIVE equ 1634 ;924 | ||
| 27 | INSERT_TARGET_DISK equ 1657 ;947 | ||
| 28 | FILE_TO_BE_RESTORED equ 1641 ;931 | ||
| 29 | DISKETTE_NUM equ 1656 ;946 | ||
| 30 | INVALID_PATH equ 1670 ;960 | ||
| 31 | |||
| 32 | db ' The Microsoft MS DOS (R) Restore Utility' | ||
| 33 | db ' Version 4.00 Copyright 1988 Microsoft ' | ||
| 34 | db ' Licensed Material - Property of Microsoft ' | ||
| 35 | db ' Author - ** **** ' | ||
| 36 | |||
| 37 | |||
| 38 | msg %MSG0,<"Y N A R I",0dh,0ah> | ||
| 39 | Msg %SOURCE_TARGET_SAME,<0dh,0ah,"Source and target drives are the same",0dh,0ah> | ||
| 40 | Msg %INVALID_NUM_PARM,<0dh,0ah,"Invalid number of parameters",0dh,0ah> | ||
| 41 | Msg %INVALID_PATH,<0dh,0ah,"Invalid path",0dh,0ah> | ||
| 42 | Msg %INVALID_DRIVE,<0dh,0ah,"Invalid drive specification",0dh,0ah> | ||
| 43 | Msg %NO_FILE_TO_RESTORE,<0dh,0ah,"Warning! No files were found to restore",0dh,0ah> | ||
| 44 | msg %INVALID_PARM,<0dh,0ah,"Invalid parameter %s",0dh,0ah> | ||
| 45 | Msgstart %INSERT_SOURCE_DISK,<0dh,0ah,"Insert backup diskette %s in drive"> | ||
| 46 | MsgContinue <" %c:",0dh,0ah> | ||
| 47 | MsgContinue <"Strike any key when ready ",0dh,0ah> | ||
| 48 | MsgEnd | ||
| 49 | |||
| 50 | MsgStart %DISK_OUT_OF_SEQUENCE,<0dh,0ah,"Warning! Diskette is out of sequence",0dh,0ah> | ||
| 51 | MsgContinue <"Replace diskette or continue if okay",0dh,0ah> | ||
| 52 | MsgContinue <"Strike any key when ready ",0dh,0ah> | ||
| 53 | MsgEnd | ||
| 54 | |||
| 55 | Msg %LAST_FILE_NOT_RESTORED,<0dh,0ah,"The last file was not restored",0dh,0ah> | ||
| 56 | Msg %FILES_WERE_BACKUP_ON,<0dh,0ah,"*** Files were backed up %s *** ",0dh,0ah> | ||
| 57 | Msg %SOURCE_NO_BACKUP_FILE,<0dh,0ah,"Source does not contain backup files",0dh,0ah> | ||
| 58 | Msg %INSUFFICIENT_MEMORY,<0dh,0ah,"Insufficient memory",0dh,0ah> | ||
| 59 | MsgStart %FILE_IS_READONLY,<0dh,0ah,"Warning! File %s",0dh,0ah> | ||
| 60 | MsgContinue <"is a read-only file",0dh,0ah> | ||
| 61 | MsgContinue <"Replace the file (Y/N)? ",0dh,0ah> | ||
| 62 | MsgEnd | ||
| 63 | |||
| 64 | Msg %FILE_SEQUENCE_ERROR,<0dh,0ah,"Restore file sequence error",0dh,0ah> | ||
| 65 | Msg %FILE_CREATION_ERROR,<0dh,0ah,"File creation error",0dh,0ah> | ||
| 66 | Msg %TARGET_IS_FULL,<0dh,0ah,"Target is full",0dh,0ah> | ||
| 67 | Msg %NOT_ABLE_TO_RESTORE_FILE,<0dh,0ah,"*** Not able to restore file ***",0dh,0ah> | ||
| 68 | MsgStart %INSERT_TARGET_DISK,<0dh,0ah,"Insert restore target in " > | ||
| 69 | MsgContinue <"drive %s:",0dh,0ah> | ||
| 70 | MsgContinue <"Strike any key when ready ",0dh,0ah> | ||
| 71 | MsgEnd | ||
| 72 | msg %INVALID_DOS_VER,<0dh,0ah,"Incorrect DOS version",0dh,0ah> | ||
| 73 | msg %FILE_TO_BE_RESTORED,<0dh,0ah,"%s",0> | ||
| 74 | |||
| 75 | msg %RESTORE_FILE_FROM_DRIVE,<0dh,0ah,"*** Restoring files from drive %s: ***",0> | ||
| 76 | |||
| 77 | Msg %FILE_SHARING_ERROR,<0dh,0ah,"Unrecoverable file sharing error",0dh,0ah> | ||
| 78 | |||
| 79 | MsgStart %SYSTEM_FILE_RESTORED,<0dh,0ah,"System files restored",0dh,0ah> | ||
| 80 | MsgContinue <"Target disk may not be bootable",0dh,0ah> | ||
| 81 | MsgEnd | ||
| 82 | |||
| 83 | MsgStart %FILE_WAS_CHANGED,<0dh,0ah,"Warning! File %s",0dh,0ah> | ||
| 84 | MsgContinue <"was changed after it was backed up",0dh,0ah> | ||
| 85 | MsgContinue <"Replace the file (Y/N)? ",0dh,0ah> | ||
| 86 | MsgEnd | ||
| 87 | msg %DISKETTE_NUM,<0dh,0ah,"Diskette: %s",0> | ||
| 88 | |||