reactos/win32ss/user/user32/lang/nl-NL.rc
Hermès Bélusca-Maïto e1ef078741 Create this branch to work on loading of different Kernel-Debugger DLL providers, and see whether it is possible to move KDBG from ntoskrnl to a new DLL called, say, KDROSDBG.DLL.
The idea then would be to have the following behaviour (when specifying the following options in the kernel command line):

/DEBUGPORT=COMi --> load KDCOM.DLL and use COMi port (i == 1,2,3,4) if possible.
/DEBUGPORT=FOO  --> load KDFOO.DLL (useful for KDUSB.DLL, KD1394.DLL, KDBAZIS.DLL for VirtualKD, etc...)
/DEBUGPORT=ROSDBG:[COMi|SCREEN|FILE|GDB|...] --> load KDROSDBG.DLL which contains the ROS kernel debugger, and use COMi or SCREEN or... as output port.

svn path=/branches/kd++/; revision=58883
2013-04-28 13:26:45 +00:00

76 lines
1.8 KiB
Plaintext

LANGUAGE LANG_DUTCH, SUBLANG_NEUTRAL //vertaald door Lionel Lowie
/////////////////////////////////////////////////////////////////////////////
//
// Dialogs
//
SELWINDOW DIALOGEX DISCARDABLE 20, 20, 220, 140
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION |
WS_SYSMENU
FONT 8, "MS Shell Dlg"
CAPTION "Selecteer venster"
BEGIN
LISTBOX 100, 5, 5, 210, 110, LBS_NOTIFY | LBS_NOINTEGRALHEIGHT | WS_CHILD | WS_VISIBLE | WS_BORDER | WS_VSCROLL | WS_HSCROLL
PUSHBUTTON "&OK", 1, 60, 120, 40, 15, BS_DEFPUSHBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP
PUSHBUTTON "&Cancel", 2, 120, 120, 40, 15, WS_CHILD | WS_VISIBLE | WS_TABSTOP
END
/////////////////////////////////////////////////////////////////////////////
//
// Menus
//
EDITMENU MENU LOADONCALL MOVEABLE DISCARDABLE
BEGIN
POPUP "DUMMY"
BEGIN
MENUITEM "&Ongedaan maken", EM_UNDO
MENUITEM SEPARATOR
MENUITEM "K&nippen", WM_CUT
MENUITEM "&Kopiëren", WM_COPY
MENUITEM "&Plakken", WM_PASTE
MENUITEM "&Verwijderen", WM_CLEAR
MENUITEM SEPARATOR
MENUITEM "&Alles Selecteren", EM_SETSEL
END
END
SYSMENU MENU LOADONCALL MOVEABLE DISCARDABLE
BEGIN
MENUITEM "&Herstellen", 61728
MENUITEM "&Verplaatsen", 61456
MENUITEM "&Grootte", 61440
MENUITEM "Mi&nimaliseren", 61472
MENUITEM "Ma&ximaliseren", 61488
MENUITEM SEPARATOR
MENUITEM "&Afsluiten\tAlt-F4", 61536
END
/////////////////////////////////////////////////////////////////////////////
//
// Strings
//
STRINGTABLE
BEGIN
IDS_ERROR, "Fout"
IDS_OK, "OK"
IDS_CANCEL, "Annuleren"
IDS_ABORT, "&Afbreken"
IDS_RETRY, "&Herhalen"
IDS_IGNORE, "&Negeren"
IDS_YES, "&Ja"
IDS_NO, "&Nee"
IDS_HELP, "Help"
IDS_TRYAGAIN, "&Probeer opnieuw"
IDS_CONTINUE, "&Verder"
END
STRINGTABLE
BEGIN
IDS_MDI_MOREWINDOWS, "&Meer vensters..."
END