Sync to trunk r65566.
[reactos.git] / base / applications / winhlp32 / lang / 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 LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
23
24 MAIN_MENU MENU
25 {
26 POPUP "&File" {
27 MENUITEM "&Open...", MNID_FILE_OPEN
28 MENUITEM SEPARATOR
29 MENUITEM "&Print...", MNID_FILE_PRINT
30 MENUITEM "Printer &setup...", MNID_FILE_SETUP
31 MENUITEM SEPARATOR
32 MENUITEM "E&xit", MNID_FILE_EXIT
33 }
34 POPUP "&Edit" {
35 MENUITEM "&Copy", MNID_EDIT_COPYDLG
36 MENUITEM SEPARATOR
37 MENUITEM "&Annotate...", MNID_EDIT_ANNOTATE
38 }
39 POPUP "&Bookmark" {
40 MENUITEM "&Define...", MNID_BKMK_DEFINE
41 }
42 POPUP "&Options" {
43 MENUITEM "History", MNID_OPTS_HISTORY
44 POPUP "Fonts"
45 BEGIN
46 MENUITEM "Small", MNID_OPTS_FONTS_SMALL
47 MENUITEM "Normal", MNID_OPTS_FONTS_NORMAL
48 MENUITEM "Large", MNID_OPTS_FONTS_LARGE
49 END
50 }
51 POPUP "&Help" {
52 MENUITEM "&Help on help\tF1", MNID_HELP_HELPON
53 MENUITEM "Always on &top", MNID_HELP_HELPTOP
54 MENUITEM "&About Wine Help", MNID_HELP_ABOUT
55 }
56 }
57
58 CONTEXT_MENU MENU
59 BEGIN
60 POPUP ""
61 BEGIN
62 MENUITEM "Annotation...", MNID_CTXT_ANNOTATE
63 MENUITEM "Copy", MNID_CTXT_COPY
64 MENUITEM "Print...", MNID_CTXT_PRINT
65 POPUP "Fonts"
66 BEGIN
67 MENUITEM "Small", MNID_CTXT_FONTS_SMALL
68 MENUITEM "Normal", MNID_CTXT_FONTS_NORMAL
69 MENUITEM "Large", MNID_CTXT_FONTS_LARGE
70 END
71 END
72 END
73
74 STRINGTABLE
75 {
76 STID_WINE_HELP, "Wine Help"
77 STID_WHERROR, "ERROR"
78 STID_WARNING, "WARNING"
79 STID_INFO, "Information"
80 STID_NOT_IMPLEMENTED, "Not yet implemented"
81 STID_HLPFILE_ERROR_s, "Error while reading the help file `%s'"
82 STID_INDEX, "&Index"
83 STID_CONTENTS, "Summary"
84 STID_BACK, "&Back"
85 STID_ALL_FILES, "All files (*.*)"
86 STID_HELP_FILES_HLP, "Help files (*.hlp)"
87 STID_FILE_NOT_FOUND_s "Cannot find '%s'. Do you want to find this file yourself?"
88 STID_NO_RICHEDIT "Cannot find a richedit implementation... Aborting"
89 STID_PSH_INDEX, "Help topics: "
90 }
91
92 IDD_INDEX DIALOG 0, 0, 200, 190
93 STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
94 FONT 8, "MS Shell Dlg"
95 CAPTION "Index"
96 {
97 LISTBOX IDC_INDEXLIST, 10, 10, 180, 150, LBS_NOINTEGRALHEIGHT | WS_VSCROLL | WS_BORDER
98 }
99
100 IDD_SEARCH DIALOG 0, 0, 200, 190
101 STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
102 FONT 8, "MS Shell Dlg"
103 CAPTION "Search"
104 {
105 LTEXT "Not yet implemented", -1, 10, 10, 180, 150
106 }