mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
b819608ed8
svn path=/branches/condrv_restructure/; revision=63104
86 lines
3.2 KiB
Plaintext
86 lines
3.2 KiB
Plaintext
/* Hungarian translation by Robert Horvath (talley at cubeclub.hu) */
|
|
|
|
LANGUAGE LANG_HUNGARIAN, SUBLANG_DEFAULT
|
|
|
|
/* Menu */
|
|
IDC_FDEBUG MENU
|
|
BEGIN
|
|
POPUP "&File"
|
|
BEGIN
|
|
MENUITEM "&Csatlakoztatás", IDM_FILE_CONNECT
|
|
MENUITEM "Kapcsolat&bontás", IDM_FILE_DISCONNECT, GRAYED
|
|
MENUITEM SEPARATOR
|
|
MENUITEM "&Clear display", IDM_FILE_CLEARDISPLAY
|
|
MENUITEM SEPARATOR
|
|
MENUITEM "&Start Capture", IDM_FILE_STARTCAPTURE
|
|
MENUITEM "S&top Capture", IDM_FILE_STOPCAPTURE, GRAYED
|
|
MENUITEM SEPARATOR
|
|
MENUITEM "Helyi &visszhang", IDM_FILE_LOCALECHO
|
|
MENUITEM SEPARATOR
|
|
MENUITEM "&Kilépés", IDM_EXIT
|
|
END
|
|
POPUP "&Súgó"
|
|
BEGIN
|
|
MENUITEM "&Névjegy ...", IDM_ABOUT
|
|
END
|
|
END
|
|
|
|
/* Accelerators */
|
|
IDC_FDEBUG ACCELERATORS
|
|
BEGIN
|
|
63, IDM_ABOUT, ASCII, ALT // "?"
|
|
47, IDM_ABOUT, ASCII, ALT // "/"
|
|
END
|
|
|
|
/* Dialogs */
|
|
|
|
IDD_ABOUTBOX DIALOGEX 22, 17, 259, 210
|
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
|
|
CAPTION "FreeLoader Debugger"
|
|
FONT 8, "MS Shell Dlg"
|
|
BEGIN
|
|
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
|
|
DEFPUSHBUTTON "OK", IDOK, 183, 189, 44, 14, WS_GROUP
|
|
ICON IDI_FDEBUG, IDC_STATIC, 19, 30, 20, 20
|
|
EDITTEXT IDC_LICENSE_EDIT, 53, 63, 174, 107, ES_MULTILINE | ES_READONLY | WS_VSCROLL
|
|
END
|
|
|
|
IDD_CONNECTION DIALOGEX 0, 0, 196, 100
|
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
|
CAPTION "Kapcsolat tulajdonságai"
|
|
FONT 8, "MS Shell Dlg"
|
|
BEGIN
|
|
LTEXT "Használt port (pl. COM1):", IDC_STATIC, 7, 7, 108, 8
|
|
EDITTEXT IDC_COMPORT, 7, 17, 182, 14, ES_AUTOHSCROLL
|
|
LTEXT "Átviteli sebesség (pl. 115200):", IDC_STATIC, 7, 38, 114, 8
|
|
EDITTEXT IDC_BAUTRATE, 7, 48, 182, 14, ES_AUTOHSCROLL
|
|
DEFPUSHBUTTON "OK", IDOK, 45, 79, 50, 14
|
|
PUSHBUTTON "Mégse", IDCANCEL, 100, 79, 50, 14
|
|
END
|
|
|
|
IDD_CAPTURE DIALOGEX 0, 0, 251, 95
|
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
|
CAPTION "Napló Állomány"
|
|
FONT 8, "MS Shell Dlg"
|
|
BEGIN
|
|
LTEXT "Állomány neve:", IDC_STATIC, 7, 17, 62, 8
|
|
EDITTEXT IDC_CAPTUREFILENAME, 7, 26, 181, 14, ES_AUTOHSCROLL
|
|
PUSHBUTTON "&Böngészés", IDC_BROWSE, 194, 26, 50, 14
|
|
DEFPUSHBUTTON "OK", IDOK, 139, 74, 50, 14
|
|
PUSHBUTTON "Mégse", IDCANCEL, 194, 74, 50, 14
|
|
END
|
|
|
|
/* String Tables */
|
|
|
|
STRINGTABLE
|
|
BEGIN
|
|
IDS_APP_TITLE "fdebug"
|
|
IDS_HELLO "Hellóka!"
|
|
IDC_FDEBUG "FDEBUG"
|
|
END
|
|
|
|
STRINGTABLE
|
|
BEGIN
|
|
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."
|
|
END
|