Hu.rc 2.7 KB
Newer Older
Alexandre Julliard's avatar
Alexandre Julliard committed
1 2 3 4
/*
 * Help Viewer
 *
 * Copyright 1996 Ulrich Schmid
5 6
 * Copyright 2002 Sylvain Petreolle
 * Copyright 2002 Zoly Nagy
7 8 9 10 11 12 13 14 15 16 17 18 19
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
20
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
Alexandre Julliard's avatar
Alexandre Julliard committed
21 22 23 24
 */

/* Menu */

25
MAIN_MENU MENU LANGUAGE LANG_HUNGARIAN, SUBLANG_DEFAULT
26
{
27
 POPUP "&Fjl" {
28
  MENUITEM "&Megnyits...", MNID_FILE_OPEN
29
  MENUITEM SEPARATOR
30 31
  MENUITEM "&Nyomtats", MNID_FILE_PRINT
  MENUITEM "Nyomtat &bellts...", MNID_FILE_SETUP
32
   MENUITEM SEPARATOR
33
  MENUITEM "&Kilps", MNID_FILE_EXIT
34 35
 }
 POPUP "&Szerkeszts" {
36
   MENUITEM "&Msols...", MNID_EDIT_COPYDLG
37
   MENUITEM SEPARATOR
38
   MENUITEM "&Jegyzet...", MNID_EDIT_ANNOTATE
39 40
 }
 POPUP "&Knyvjelz" {
41
   MENUITEM "&Definils...", MNID_BKMK_DEFINE
42
 }
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
 POPUP "&Options" {
   POPUP	"Help always visible"
   BEGIN
     MENUITEM "Default",	MNID_OPTS_HELP_DEFAULT
     MENUITEM "Visible",	MNID_OPTS_HELP_VISIBLE
     MENUITEM "Non visible",	MNID_OPTS_HELP_NONVISIBLE
  END
  MENUITEM "History",		MNID_OPTS_HISTORY
  POPUP    "Fonts"
  BEGIN
    MENUITEM "Small",		MNID_OPTS_FONTS_SMALL
    MENUITEM "Normal",    	MNID_OPTS_FONTS_NORMAL
    MENUITEM "Large",     	MNID_OPTS_FONTS_LARGE
  END
  MENUITEM "Use system colors",	MNID_OPTS_SYSTEM_COLORS
 }
59 60
 POPUP "&Sg" {
   MENUITEM "&Hasznlat", MNID_HELP_HELPON
61
   MENUITEM "Mindig &legfell", MNID_HELP_HELPTOP
62
   MENUITEM SEPARATOR
63
   MENUITEM "&Informci...", MNID_HELP_ABOUT
64
#ifdef WINELIB
65
   MENUITEM "&&A WINE-rl", MNID_HELP_WINE
66 67 68
#endif
 }
}
Alexandre Julliard's avatar
Alexandre Julliard committed
69 70 71

/* Strings */

72
STRINGTABLE DISCARDABLE LANGUAGE LANG_HUNGARIAN, SUBLANG_DEFAULT
73
{
74
STID_WINE_HELP, 	"WINE sg"
75 76 77 78 79
STID_WHERROR, 		"HIBA"
STID_WARNING,  		"FIGYELMEZTETS"
STID_INFO,  		"Informci"
STID_NOT_IMPLEMENTED, 	"Nincs implementlva"
STID_HLPFILE_ERROR_s, 	"Hiba a `%s' file olvassakor"
80 81
STID_INDEX, 		"&Tartalom"
STID_CONTENTS,		"Summary"
82
STID_BACK, 		"&Vissza"
83 84
STID_ALL_FILES, 	"Minden fjl (*.*)"
STID_HELP_FILES_HLP, 	"Sg fjlok (*.hlp)"
85
STID_FILE_NOT_FOUND_s	"Cannot find '%s'. Do you want to find this file yourself?"
86
STID_NO_RICHEDIT	"Cannot find a richedit implementation... Aborting"
87
STID_PSH_INDEX,		"Help topics: "
88
}