65 lines
2.8 KiB
Plaintext
65 lines
2.8 KiB
Plaintext
//----------------------------------------------------------------------------
|
|
//
|
|
// File: makebt32.rc
|
|
//
|
|
// Description:
|
|
//
|
|
// String table for makebt32.exe
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#include "resource.h"
|
|
#include <windows.h>
|
|
|
|
STRINGTABLE DISCARDABLE
|
|
BEGIN
|
|
IDS_OUT_OF_MEMORY "Out of memory. Please free more memory and run this program again."
|
|
IDS_144_NOT_SUPPORTED "This floppy drive does not support 1.44 MB disks."
|
|
IDS_NO_ROOT_DIR "Cannot find root directory on specified drive."
|
|
IDS_DRIVE_NOT_FL0PPY "The drive specified is not a floppy drive."
|
|
|
|
IDS_NT_VERSION_NAME_DEFAULT "Windows XP SP1"
|
|
IDS_DISK_LABEL_1_DEFAULT "Windows XP SP1 Setup Boot Disk"
|
|
IDS_DISK_LABEL_2_DEFAULT "Windows XP SP1 Setup Disk #2"
|
|
IDS_DISK_LABEL_3_DEFAULT "Windows XP SP1 Setup Disk #3"
|
|
IDS_DISK_LABEL_4_DEFAULT "Windows XP SP1 Setup Disk #4"
|
|
IDS_DISK_LABEL_5_DEFAULT "Windows XP SP1 Setup Disk #5"
|
|
IDS_DISK_LABEL_6_DEFAULT "Windows XP SP1 Setup Disk #6"
|
|
|
|
IDS_STARS "****************************************************"
|
|
IDS_PROGRAM_EXPLANATION_LINE_1 "This program creates the Setup boot disks"
|
|
IDS_PROGRAM_EXPLANATION_LINE_2 "for Microsoft %s."
|
|
IDS_PROGRAM_EXPLANATION_LINE_3 "To create these disks, you need to provide 6 blank,"
|
|
IDS_PROGRAM_EXPLANATION_LINE_4 "formatted, high-density disks."
|
|
|
|
IDS_INSERT_FIRST_DISK_LINE_1 "Insert one of these disks into drive %c:. This disk"
|
|
IDS_INSERT_FIRST_DISK_LINE_2 "will become the %s."
|
|
|
|
IDS_INSERT_ANOTHER_DISK_LINE_1 "Insert another disk into drive %c:. This disk will"
|
|
IDS_INSERT_ANOTHER_DISK_LINE_2 "become the %s."
|
|
|
|
IDS_PRESS_ANY_KEY_WHEN_READY "Press any key when you are ready."
|
|
|
|
IDS_COMPLETED_SUCCESSFULLY "The setup boot disks have been created successfully."
|
|
IDS_COMPLETE "complete"
|
|
|
|
IDS_CANNOT_FIND_FILE "Cannot find file: %s"
|
|
|
|
IDS_SPECIFY_FLOPPY_DRIVE "Please specify the floppy drive to copy the images to: "
|
|
|
|
IDS_INVALID_DRIVE_LETTER "Invalid drive letter"
|
|
|
|
IDS_ATTEMPT_TO_CREATE_FLOPPY_AGAIN "Do you want to attempt to create this floppy again?"
|
|
IDS_PRESS_ENTER_OR_ESC "Press Enter to try again or Esc to exit."
|
|
|
|
END
|
|
|
|
#include <ntverp.h>
|
|
|
|
#define VER_FILETYPE VFT_APP
|
|
#define VER_FILESUBTYPE VFT2_UNKNOWN
|
|
#define VER_FILEDESCRIPTION_STR "MakeBT32"
|
|
#define VER_INTERNALNAME_STR "makebt32\0"
|
|
#define VER_ORIGINALFILENAME_STR "makebt32.EXE"
|
|
|
|
#include "common.ver" |