reactos/win32ss/user/user32/lang/cs-CZ.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

81 lines
1.9 KiB
Plaintext

/* FILE: dll/win32/user32/lang/cs-CZ.rc
* TRANSLATOR: Radek Liska aka Black_Fox (radekliska at gmail dot com)
* UPDATED: 2008-06-27
*/
LANGUAGE LANG_CZECH, SUBLANG_DEFAULT
/////////////////////////////////////////////////////////////////////////////
//
// 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 "Select Window"
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 "&Storno", 2, 120, 120, 40, 15, WS_CHILD | WS_VISIBLE | WS_TABSTOP
END
/////////////////////////////////////////////////////////////////////////////
//
// Menus
//
EDITMENU MENU LOADONCALL MOVEABLE DISCARDABLE
BEGIN
POPUP "DUMMY"
BEGIN
MENUITEM "&Zpět", EM_UNDO
MENUITEM SEPARATOR
MENUITEM "V&yjmout", WM_CUT
MENUITEM "&Kopírovat", WM_COPY
MENUITEM "&Vložit", WM_PASTE
MENUITEM "Od&stranit", WM_CLEAR
MENUITEM SEPARATOR
MENUITEM "Vy&brat vše", EM_SETSEL
END
END
SYSMENU MENU LOADONCALL MOVEABLE DISCARDABLE
BEGIN
MENUITEM "&Obnovit", 61728
MENUITEM "&Přesunout", 61456
MENUITEM "&Velikost", 61440
MENUITEM "Mi&nimalizovat", 61472
MENUITEM "Ma&ximalizovat", 61488
MENUITEM SEPARATOR
MENUITEM "&Zavřít\tAlt-F4", 61536
END
/////////////////////////////////////////////////////////////////////////////
//
// Strings
//
STRINGTABLE
BEGIN
IDS_ERROR, "Chyba"
IDS_OK, "OK"
IDS_CANCEL, "Storno"
IDS_ABORT, "&Přerušit"
IDS_RETRY, "&Znovu"
IDS_IGNORE, "&Ignorovat"
IDS_YES, "&Ano"
IDS_NO, "&Ne"
IDS_HELP, "Nápověda"
IDS_TRYAGAIN, "Z&kusit znovu"
IDS_CONTINUE, "P&okračovat"
END
STRINGTABLE
BEGIN
IDS_MDI_MOREWINDOWS, "&Více oken..." //kde se toto objevuje?
END