f6f870699894d8f020abf24b1e8ae3ad128566e9
[reactos.git] / reactos / boot / freeldr / fdebug / lang / en-US.rc
1 LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
2
3 /* Menu */
4 IDC_FDEBUG MENU
5 BEGIN
6 POPUP "&File"
7 BEGIN
8 MENUITEM "&Connect", IDM_FILE_CONNECT
9 MENUITEM "&Disconnect", IDM_FILE_DISCONNECT, GRAYED
10 MENUITEM SEPARATOR
11 MENUITEM "&Clear display", IDM_FILE_CLEARDISPLAY
12 MENUITEM SEPARATOR
13 MENUITEM "&Start Capture", IDM_FILE_STARTCAPTURE
14 MENUITEM "S&top Capture", IDM_FILE_STOPCAPTURE, GRAYED
15 MENUITEM SEPARATOR
16 MENUITEM "&Local Echo", IDM_FILE_LOCALECHO
17 MENUITEM SEPARATOR
18 MENUITEM "E&xit", IDM_EXIT
19 END
20 POPUP "&Help"
21 BEGIN
22 MENUITEM "&About ...", IDM_ABOUT
23 END
24 END
25
26 /* Accelerators */
27 IDC_FDEBUG ACCELERATORS
28 BEGIN
29 63, IDM_ABOUT, ASCII, ALT // "?"
30 47, IDM_ABOUT, ASCII, ALT // "/"
31 END
32
33 /* Dialogs */
34
35 IDD_ABOUTBOX DIALOGEX 22, 17, 259, 210
36 STYLE DS_SHELLFONT | DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
37 CAPTION "About FreeLoader Debugger"
38 FONT 8, "MS Shell Dlg"
39 BEGIN
40 CONTROL "FreeLoader Debugger v1.0\nCopyright (C) 2003\nby Brian Palmer (brianp@reactos.org)", IDC_STATIC, "Static", SS_LEFTNOWORDWRAP | WS_GROUP, 53, 28, 122, 26
41 DEFPUSHBUTTON "OK", IDOK, 183, 189, 44, 14, WS_GROUP
42 ICON IDI_FDEBUG, IDC_STATIC, 19, 30, 20, 20
43 EDITTEXT IDC_LICENSE_EDIT, 53, 63, 174, 107, ES_MULTILINE | ES_READONLY | WS_VSCROLL
44 END
45
46 IDD_CONNECTION DIALOGEX 0, 0, 196, 100
47 STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
48 CAPTION "Connection Options"
49 FONT 8, "MS Shell Dlg"
50 BEGIN
51 LTEXT "Enter the COM port (e.g. COM1):", IDC_STATIC, 7, 7, 108, 8
52 EDITTEXT IDC_COMPORT, 7, 17, 182, 14, ES_AUTOHSCROLL
53 LTEXT "Enter the baud rate (e.g. 115200):", IDC_STATIC, 7, 38, 114, 8
54 EDITTEXT IDC_BAUTRATE, 7, 48, 182, 14, ES_AUTOHSCROLL
55 DEFPUSHBUTTON "OK", IDOK, 45, 79, 50, 14
56 PUSHBUTTON "Cancel", IDCANCEL, 100, 79, 50, 14
57 END
58
59 IDD_CAPTURE DIALOGEX 0, 0, 251, 95
60 STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
61 CAPTION "Capture File"
62 FONT 8, "MS Shell Dlg"
63 BEGIN
64 LTEXT "Capture File Name:", IDC_STATIC, 7, 17, 62, 8
65 EDITTEXT IDC_CAPTUREFILENAME, 7, 26, 181, 14, ES_AUTOHSCROLL
66 PUSHBUTTON "&Browse", IDC_BROWSE, 194, 26, 50, 14
67 DEFPUSHBUTTON "OK", IDOK, 139, 74, 50, 14
68 PUSHBUTTON "Cancel", IDCANCEL, 194, 74, 50, 14
69 END
70
71 /* String Tables */
72
73 STRINGTABLE
74 BEGIN
75 IDS_APP_TITLE "fdebug"
76 IDS_HELLO "Hello World!"
77 IDC_FDEBUG "FDEBUG"
78 END
79
80 STRINGTABLE
81 BEGIN
82 IDS_LICENSE "This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.\r\n\r\nThis program 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 General Public License for more details.\r\n\r\nYou should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA."
83 END