2011-01-10 12:54:23 +00:00
|
|
|
/*
|
|
|
|
* Winedbg resources
|
|
|
|
*
|
|
|
|
* Copyright 2008 Mikolaj Zalewski
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "resource.h"
|
|
|
|
|
2013-11-05 16:53:42 +00:00
|
|
|
#pragma makedep po
|
|
|
|
|
2011-01-10 12:54:23 +00:00
|
|
|
LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
|
|
|
|
|
|
|
|
IDM_DEBUG_POPUP MENU
|
|
|
|
BEGIN
|
|
|
|
POPUP ""
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "&Debug", ID_DEBUG
|
|
|
|
END
|
|
|
|
END
|
|
|
|
|
|
|
|
STRINGTABLE
|
|
|
|
BEGIN
|
2018-06-19 19:04:52 +00:00
|
|
|
IDS_AUTO_CAPTION "Program Error"
|
|
|
|
IDS_INVALID_PARAMS "A program on your system has crashed, but WineDbg was \
|
|
|
|
unable to attach to the process to obtain a backtrace."
|
2011-01-10 12:54:23 +00:00
|
|
|
IDS_UNIDENTIFIED "(unidentified)"
|
2012-01-16 15:31:47 +00:00
|
|
|
IDS_TEXT_FILES, "Text files (*.txt)"
|
|
|
|
IDS_ALL_FILES, "All files (*.*)"
|
|
|
|
IDS_SAVE_ERROR, "Saving failed"
|
2012-01-18 11:42:02 +00:00
|
|
|
IDS_LOADING, "Loading detailed information, please wait..."
|
2011-01-10 12:54:23 +00:00
|
|
|
END
|
2011-11-18 09:49:08 +00:00
|
|
|
|
|
|
|
IDD_CRASH_DLG DIALOGEX 100, 100, 273, 175
|
|
|
|
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
|
|
|
CAPTION "Program Error"
|
2012-01-20 10:58:45 +00:00
|
|
|
FONT 8, "MS Shell Dlg"
|
2011-11-18 09:49:08 +00:00
|
|
|
BEGIN
|
|
|
|
LTEXT "",IDC_STATIC_BG,0,0,273,52,WS_BORDER,0
|
|
|
|
LTEXT "The program %s has encountered a serious problem and needs \
|
|
|
|
to close. We are sorry for the inconvenience.",
|
|
|
|
IDC_STATIC_TXT1,27,10,224,30
|
2011-11-18 11:17:30 +00:00
|
|
|
CONTROL "This can be caused by a problem in the program or a deficiency in Wine. \
|
2017-11-30 18:57:16 +00:00
|
|
|
You may want to check the <a href=\"https://appdb.winehq.org\">Application Database</a> \
|
2012-01-16 15:31:47 +00:00
|
|
|
for tips about running this application.",
|
|
|
|
IDC_STATIC_TXT2,"SysLink",0,27,60,224,100
|
2011-11-18 09:49:08 +00:00
|
|
|
DEFPUSHBUTTON "Close", IDOK, 205, 151, 60, 16, WS_TABSTOP
|
2012-01-16 15:31:47 +00:00
|
|
|
PUSHBUTTON "Show &Details", ID_DETAILS, 140, 151, 60, 16, WS_TABSTOP
|
|
|
|
END
|
|
|
|
|
2012-08-06 02:08:20 +00:00
|
|
|
IDD_DETAILS_DLG DIALOGEX 100, 100, 400, 340
|
|
|
|
STYLE DS_SETFONT | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_VISIBLE
|
2012-01-16 15:31:47 +00:00
|
|
|
CAPTION "Program Error Details"
|
2012-01-20 10:58:45 +00:00
|
|
|
FONT 8, "MS Shell Dlg"
|
2012-01-16 15:31:47 +00:00
|
|
|
BEGIN
|
2012-08-06 02:08:20 +00:00
|
|
|
EDITTEXT IDC_CRASH_TXT, 4, 4, 392, 272, ES_MULTILINE | ES_READONLY | WS_HSCROLL | WS_VSCROLL, WS_TABSTOP
|
2012-01-16 15:31:47 +00:00
|
|
|
CONTROL "If this problem is not present under Windows and has not been reported yet, \
|
|
|
|
you can save the detailed information to a file using the \"Save As\" button, \
|
2017-11-30 18:57:16 +00:00
|
|
|
then <a href=\"https://wiki.winehq.org/Bugs\">file a bug report</a> \
|
2012-01-16 15:31:47 +00:00
|
|
|
and attach that file to the report.",
|
2012-08-06 02:08:20 +00:00
|
|
|
IDC_STATIC_TXT2,"SysLink",0,6,285,388,32
|
|
|
|
DEFPUSHBUTTON "Close", IDOK, 326, 320, 70, 16, WS_TABSTOP
|
|
|
|
PUSHBUTTON "&Save As...", ID_SAVEAS, 252, 320, 70, 16, WS_TABSTOP
|
2011-11-18 09:49:08 +00:00
|
|
|
END
|
2021-06-16 02:33:41 +00:00
|
|
|
|
|
|
|
/* @makedep: winedbg.manifest */
|
|
|
|
1 RT_MANIFEST winedbg.manifest
|