xref: /reactos/boot/freeldr/fdebug/lang/de-DE.rc (revision cc3672cb)
1/* German translation by DJ_Smith (dj_smith_reactos at online.de) */
2
3LANGUAGE LANG_GERMAN, SUBLANG_NEUTRAL
4
5/* Menu */
6IDC_FDEBUG MENU
7BEGIN
8    POPUP "&Datei"
9    BEGIN
10        MENUITEM "&Verbinden", IDM_FILE_CONNECT
11        MENUITEM "&Trennen", IDM_FILE_DISCONNECT, GRAYED
12        MENUITEM SEPARATOR
13        MENUITEM "A&nzeige löschen", IDM_FILE_CLEARDISPLAY
14        MENUITEM SEPARATOR
15        MENUITEM "&Aufnahme starten", IDM_FILE_STARTCAPTURE
16        MENUITEM "A&ufnahme stoppen", IDM_FILE_STOPCAPTURE, GRAYED
17        MENUITEM SEPARATOR
18        MENUITEM "&Local Echo", IDM_FILE_LOCALECHO
19        MENUITEM SEPARATOR
20        MENUITEM "B&eenden", IDM_EXIT
21    END
22    POPUP "&Hilfe"
23    BEGIN
24        MENUITEM "&Über...", IDM_ABOUT
25    END
26END
27
28/* Accelerators */
29IDC_FDEBUG ACCELERATORS
30BEGIN
31    VK_OEM_2, IDM_ABOUT, VIRTKEY, ALT //FIXME: ?/ US keyboard only
32    VK_DIVIDE, IDM_ABOUT, VIRTKEY, ALT
33END
34
35/* Dialogs */
36
37IDD_ABOUTBOX DIALOGEX 22, 17, 259, 210
38STYLE DS_SHELLFONT | DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
39CAPTION "Über FreeLoader Debugger"
40FONT 8, "MS Shell Dlg"
41BEGIN
42    CONTROL "FreeLoader Debugger\nCopyright (C) 2003\nby Brian Palmer (brianp@reactos.org)", IDC_STATIC, "Static", SS_LEFTNOWORDWRAP | WS_GROUP, 53, 28, 122, 26
43    DEFPUSHBUTTON "OK", IDOK, 183, 189, 44, 14, WS_GROUP
44    ICON IDI_FDEBUG, IDC_STATIC, 19, 30, 20, 20
45    EDITTEXT IDC_LICENSE_EDIT, 53, 63, 174, 107, ES_MULTILINE | ES_READONLY | WS_VSCROLL
46END
47
48IDD_CONNECTION DIALOGEX 0, 0, 196, 100
49STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
50CAPTION "Verbindungsoptionen"
51FONT 8, "MS Shell Dlg"
52BEGIN
53    LTEXT "COM Port angeben (z.B. COM1):", IDC_STATIC, 7, 7, 108, 8
54    EDITTEXT IDC_COMPORT, 7, 17, 182, 14, ES_AUTOHSCROLL
55    LTEXT "Bandbreite angeben (z.B. 115200):", IDC_STATIC, 7, 38, 114, 8
56    EDITTEXT IDC_BAUTRATE, 7, 48, 182, 14, ES_AUTOHSCROLL
57    DEFPUSHBUTTON "OK", IDOK, 45, 79, 50, 14
58    PUSHBUTTON "Abbrechen", IDCANCEL, 100, 79, 50, 14
59END
60
61IDD_CAPTURE DIALOGEX 0, 0, 251, 95
62STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
63CAPTION "Protokolldatei"
64FONT 8, "MS Shell Dlg"
65BEGIN
66    LTEXT "Name der Protokolldatei:", IDC_STATIC, 7, 17, 120, 8
67    EDITTEXT IDC_CAPTUREFILENAME, 7, 26, 181, 14, ES_AUTOHSCROLL
68    PUSHBUTTON "&Durchsuchen", IDC_BROWSE, 194, 26, 50, 14
69    DEFPUSHBUTTON "OK", IDOK, 139, 74, 50, 14
70    PUSHBUTTON "Abbrechen", IDCANCEL, 194, 74, 50, 14
71END
72
73/* String Tables */
74
75STRINGTABLE
76BEGIN
77    IDS_APP_TITLE "FreeLoader Debugger"
78    IDS_HELLO "Hello World!"
79    IDC_FDEBUG "FDEBUG"
80END
81
82STRINGTABLE
83BEGIN
84    IDS_LICENSE "Dieses Programm ist kostenlos; Sie können es frei verteilen mit od. ohne Änderungen unter der GNU Lesser General Public License wie es von der Free Software Foundation veröffentlicht wurde; entweder Version 2.1 der Lizenz, oder eine spätere Version (ihrer Wahl).\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."
85END
86