xref: /reactos/boot/freeldr/fdebug/lang/en-US.rc (revision 1734f297)
1LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
2
3/* Menu */
4IDC_FDEBUG MENU
5BEGIN
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
24END
25
26/* Accelerators */
27IDC_FDEBUG ACCELERATORS
28BEGIN
29    VK_OEM_2, IDM_ABOUT, VIRTKEY, ALT //FIXME: ?/ US keyboard only
30    VK_DIVIDE, IDM_ABOUT, VIRTKEY, ALT
31END
32
33/* Dialogs */
34
35IDD_ABOUTBOX DIALOGEX 22, 17, 259, 210
36STYLE DS_SHELLFONT | DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
37CAPTION "About FreeLoader Debugger"
38FONT 8, "MS Shell Dlg"
39BEGIN
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
44END
45
46IDD_CONNECTION DIALOGEX 0, 0, 196, 100
47STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
48CAPTION "Connection Options"
49FONT 8, "MS Shell Dlg"
50BEGIN
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
57END
58
59IDD_CAPTURE DIALOGEX 0, 0, 251, 95
60STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
61CAPTION "Capture File"
62FONT 8, "MS Shell Dlg"
63BEGIN
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
69END
70
71/* String Tables */
72
73STRINGTABLE
74BEGIN
75    IDS_APP_TITLE "FreeLoader Debugger"
76    IDS_HELLO "Hello World!"
77    IDC_FDEBUG "FDEBUG"
78END
79
80STRINGTABLE
81BEGIN
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."
83END
84