ntdll: Fix the formatting of the get_token_groups request for 64-bit.
[wine] / programs / winhlp32 / En.rc
1 /*
2  * Help Viewer
3  *
4  * Copyright 1996 Ulrich Schmid
5  * Copyright 2002 Sylvain Petreolle <spetreolle@yahoo.fr>
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20  */
21
22 #include "winhelp_res.h"
23
24 /* Menu */
25
26 MAIN_MENU MENU LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
27 {
28  POPUP "&File" {
29   MENUITEM "&Open", MNID_FILE_OPEN
30   MENUITEM SEPARATOR
31   MENUITEM "&Print", MNID_FILE_PRINT
32   MENUITEM "Printer &setup...", MNID_FILE_SETUP
33    MENUITEM SEPARATOR
34   MENUITEM "E&xit", MNID_FILE_EXIT
35  }
36  POPUP "&Edit" {
37    MENUITEM "&Copy...", MNID_EDIT_COPYDLG
38    MENUITEM SEPARATOR
39    MENUITEM "&Annotate...", MNID_EDIT_ANNOTATE
40  }
41  POPUP "&Bookmark" {
42    MENUITEM "&Define...", MNID_BKMK_DEFINE
43  }
44  POPUP "&Options" {
45    POPUP        "Help always visible"
46    BEGIN
47      MENUITEM "Default",        MNID_OPTS_HELP_DEFAULT
48      MENUITEM "Visible",        MNID_OPTS_HELP_VISIBLE
49      MENUITEM "Non visible",    MNID_OPTS_HELP_NONVISIBLE
50   END
51   MENUITEM "History",           MNID_OPTS_HISTORY
52   POPUP    "Fonts"
53   BEGIN
54     MENUITEM "Small",           MNID_OPTS_FONTS_SMALL
55     MENUITEM "Normal",          MNID_OPTS_FONTS_NORMAL
56     MENUITEM "Large",           MNID_OPTS_FONTS_LARGE
57   END
58   MENUITEM "Use system colors", MNID_OPTS_SYSTEM_COLORS
59  }
60  POPUP "&Help" {
61    MENUITEM "Help &on help", MNID_HELP_HELPON
62    MENUITEM "Always on &top", MNID_HELP_HELPTOP
63    MENUITEM SEPARATOR
64    MENUITEM "&Info...", MNID_HELP_ABOUT
65 #ifdef WINELIB
66    MENUITEM "&About Wine", MNID_HELP_WINE
67 #endif
68  }
69 }
70
71 IDD_INDEX DIALOG DISCARDABLE 0, 0, 200, 190 LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
72 STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
73 FONT 8, "MS Shell Dlg"
74 CAPTION "Index"
75 {
76     LISTBOX IDC_INDEXLIST, 10, 10, 180, 150, LBS_NOINTEGRALHEIGHT | WS_VSCROLL | WS_BORDER
77 }
78
79 IDD_SEARCH DIALOG DISCARDABLE 0, 0, 200, 190 LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
80 STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
81 FONT 8, "MS Shell Dlg"
82 CAPTION "Search"
83 {
84     LTEXT  "Not implemented yet", -1, 10, 10, 180, 150
85 }
86
87 /* Strings */
88 STRINGTABLE DISCARDABLE LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
89 {
90 STID_WINE_HELP,         "Wine Help"
91 STID_WHERROR,           "ERROR"
92 STID_WARNING,           "WARNING"
93 STID_INFO,              "Information"
94 STID_NOT_IMPLEMENTED,   "Not implemented"
95 STID_HLPFILE_ERROR_s,   "Error while reading the help file `%s'"
96 STID_INDEX,             "&Index"
97 STID_CONTENTS,          "Summary"
98 STID_BACK,              "&Back"
99 STID_ALL_FILES,         "All files (*.*)"
100 STID_HELP_FILES_HLP,    "Help files (*.hlp)"
101 STID_FILE_NOT_FOUND_s   "Cannot find '%s'. Do you want to find this file yourself?"
102 STID_NO_RICHEDIT        "Cannot find a richedit implementation... Aborting"
103 STID_PSH_INDEX,         "Help topics: "
104 }
105
106 CONTEXT_MENU MENU LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
107 BEGIN
108         POPUP ""
109         BEGIN
110                 MENUITEM "Annotation...",       MNID_CTXT_ANNOTATE
111                 MENUITEM "Copy",                MNID_CTXT_COPY
112                 MENUITEM "Print...",            MNID_CTXT_PRINT
113                 POPUP    "Fonts"
114                 BEGIN
115                         MENUITEM "Small",       MNID_CTXT_FONTS_SMALL
116                         MENUITEM "Normal",      MNID_CTXT_FONTS_NORMAL
117                         MENUITEM "Large",       MNID_CTXT_FONTS_LARGE
118                 END
119                 POPUP   "Help always visible"
120                 BEGIN
121                         MENUITEM "Default",     MNID_CTXT_HELP_DEFAULT
122                         MENUITEM "Visible",     MNID_CTXT_HELP_VISIBLE
123                         MENUITEM "Non visible", MNID_CTXT_HELP_NONVISIBLE
124                 END
125                 MENUITEM "Use system colors",   MNID_CTXT_SYSTEM_COLORS
126         END
127 END