en.rc
来自「一个类似windows」· RC 代码 · 共 55 行
RC
55 行
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
IDD_FIRSTPAGE DIALOGEX 0, 0, PROPSHEETWIDTH, PROPSHEETHEIGHT
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
CAPTION "Error reporting assistant"
FONT 8, "MS Shell Dlg", 0, 0, 0x0
BEGIN
LTEXT "The system recovered from an error.", -1, 115, 15, 160, 24
LTEXT "Would you like to report the error to the ReactOS project?", -1, 115, 35, 160, 17
END
IDD_SUBMIT_REPORT DIALOGEX 0, 0, PROPSHEETWIDTH, PROPSHEETHEIGHT
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
CAPTION "Error reporting assistant"
FONT 8, "MS Shell Dlg", 0, 0, 0x0
BEGIN
LTEXT "Please describe what you were trying to do when the error occurred.\n\nClick 'Next' to send the report to the ReactOS project or 'Cancel' to not send any information.",-1,10,0,225,40
LTEXT "Your e-mail address (optional):",-1,10,40,120,20
EDITTEXT IDE_SUBMIT_REPORT_YOUR_EMAIL, 110,40,150,12
LTEXT "Description of problem (optional):",-1,10,55,120,20
EDITTEXT IDE_SUBMIT_REPORT_PROBLEM_DESCRIPTION,10,65,250,55,ES_WANTRETURN|ES_MULTILINE|ES_LEFT|WS_BORDER|WS_TABSTOP|WS_VSCROLL
END
IDD_SUBMITTING_REPORT DIALOGEX 0, 0, PROPSHEETWIDTH, PROPSHEETHEIGHT
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
CAPTION "Error reporting assistant"
FONT 8, "MS Shell Dlg", 0, 0, 0x0
BEGIN
LTEXT "{STATUS}",IDC_SUBMISSION_STATUS,25,58,225,8
CONTROL "", IDC_SUBMITTING_IN_PROGRESS, "msctls_progress32", PBS_MARQUEE | WS_CHILD | WS_VISIBLE | WS_BORDER, 25, 80, 225, 8
END
IDD_SUBMITTED_REPORT DIALOGEX 0, 0, PROPSHEETWIDTH, PROPSHEETHEIGHT
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
CAPTION "Error reporting assistant"
FONT 8, "MS Shell Dlg", 0, 0, 0x0
BEGIN
LTEXT "Your error report was successfully sent to the ReactOS project.",-1,25,5,225,20
END
STRINGTABLE
BEGIN
IDS_WIZARD_NAME "Report error to the ReactOS project"
IDS_FAILED_TO_CONTACT_SERVER "The system was unable to contact the error reporting server.\nPlease make sure that your system is connected to the internet."
IDS_FAILED_TO_DELIVER_ERROR_REPORT "The system was unable to deliver the error report."
END
STRINGTABLE
BEGIN
IDS_CONTACTING_SERVER "Contacting error reporting server..."
IDS_FAILED_TO_INITIALIZE_WINSOCK "Failed to initialize winsock (windows error code %d)"
IDS_FAILED_TO_LOCATE_SERVER "Failed to contact error reporting server"
END
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?