wined3d: Rename dummyTextureName variable.
[wine/multimedia.git] / programs / regedit / regedit.rc
blob8d3b3332101cda1166ea85a8ed571c812bb510df
1 /*
2  * Regedit resources
3  *
4  * Copyright 2002 Robert Dickenson
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19  */
21 #include "resource.h"
23 LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
26  * Menus
27  */
29 IDR_REGEDIT_MENU MENU
30 BEGIN
31     POPUP "&Registry"
32     BEGIN
33         MENUITEM "&Import Registry File...",    ID_REGISTRY_IMPORTREGISTRYFILE
34         MENUITEM "&Export Registry File...",    ID_REGISTRY_EXPORTREGISTRYFILE
35         MENUITEM SEPARATOR
36         MENUITEM "&Print...\tCtrl+P",           ID_REGISTRY_PRINT
37         MENUITEM SEPARATOR
38         MENUITEM "E&xit",                       ID_REGISTRY_EXIT
39     END
40     POPUP "&Edit"
41     BEGIN
42         MENUITEM "&Modify...",                  ID_EDIT_MODIFY
43         MENUITEM SEPARATOR
44         POPUP "&New"
45         BEGIN
46             MENUITEM "&Key",                        ID_EDIT_NEW_KEY
47             MENUITEM SEPARATOR
48             MENUITEM "&String Value",               ID_EDIT_NEW_STRINGVALUE
49             MENUITEM "&Binary Value",               ID_EDIT_NEW_BINARYVALUE
50             MENUITEM "&DWORD Value",                ID_EDIT_NEW_DWORDVALUE
51             MENUITEM "&Multi String Value",         ID_EDIT_NEW_MULTI_STRINGVALUE
52             MENUITEM "&Expandable String Value",    ID_EDIT_NEW_EXPANDVALUE
53         END
54         MENUITEM SEPARATOR
55         MENUITEM "&Delete\tDel",                ID_EDIT_DELETE
56         MENUITEM "&Rename\tF2",                 ID_EDIT_RENAME
57         MENUITEM SEPARATOR
58         MENUITEM "&Copy Key Name",              ID_EDIT_COPYKEYNAME
59         MENUITEM SEPARATOR
60         MENUITEM "&Find...\tCtrl+F",            ID_EDIT_FIND, GRAYED
61         MENUITEM "Find Ne&xt\tF3",              ID_EDIT_FINDNEXT, GRAYED
62     END
63     POPUP "&View"
64     BEGIN
65         MENUITEM "Status &Bar",                 ID_VIEW_STATUSBAR
66         MENUITEM SEPARATOR
67         MENUITEM "Sp&lit",                      ID_VIEW_SPLIT
68         MENUITEM SEPARATOR
69         MENUITEM "&Refresh\tF5",                ID_VIEW_REFRESH
70     END
71     POPUP "&Favorites"
72     BEGIN
73         MENUITEM "&Add to Favorites...",          ID_FAVORITES_ADDTOFAVORITES
74         MENUITEM "&Remove Favorite...",           ID_FAVORITES_REMOVEFAVORITE
75     END
76     POPUP "&Help"
77     BEGIN
78         MENUITEM "&Contents\tF1",               ID_HELP_HELPTOPICS
79         MENUITEM "&About Registry Editor",      ID_HELP_ABOUT
80     END
81 END
83 IDR_POPUP_MENUS MENU
84 BEGIN
85   POPUP ""
86   BEGIN
87         MENUITEM "&Modify...",                  ID_EDIT_MODIFY
88         MENUITEM "Modify Binary Data...",       ID_EDIT_MODIFY_BIN
89         MENUITEM SEPARATOR
90         MENUITEM "&Delete\tDel",                ID_EDIT_DELETE
91         MENUITEM "&Rename",                     ID_EDIT_RENAME
92   END
93   POPUP ""
94   BEGIN
95         POPUP "&New"
96         BEGIN
97             MENUITEM "&Key",                        ID_EDIT_NEW_KEY
98             MENUITEM SEPARATOR
99             MENUITEM "&String Value",               ID_EDIT_NEW_STRINGVALUE
100             MENUITEM "&Binary Value",               ID_EDIT_NEW_BINARYVALUE
101             MENUITEM "&DWORD Value",                ID_EDIT_NEW_DWORDVALUE
102             MENUITEM "&Multi String Value",         ID_EDIT_NEW_MULTI_STRINGVALUE
103             MENUITEM "&Expandable String Value",    ID_EDIT_NEW_EXPANDVALUE
104         END
105         MENUITEM SEPARATOR
106         MENUITEM "&Delete\tDel",                ID_EDIT_DELETE
107         MENUITEM "&Rename\tF2",                 ID_EDIT_RENAME
108         MENUITEM SEPARATOR
109         MENUITEM "&Export...",                  ID_EDIT_EXPORT
110         MENUITEM "&Copy Key Name",              ID_EDIT_COPYKEYNAME
111         MENUITEM SEPARATOR
112         MENUITEM "&Find...\tCtrl+F",            ID_EDIT_FIND, GRAYED
113   END
117  * String Tables
118  */
120 STRINGTABLE
121 BEGIN
122     IDS_LIST_COLUMN_NAME    "Name"
123     IDS_LIST_COLUMN_TYPE    "Type"
124     IDS_LIST_COLUMN_DATA    "Data"
127 STRINGTABLE
128 BEGIN
129     IDS_APP_TITLE           "Registry Editor"
132 STRINGTABLE
133 BEGIN
134     ID_REGISTRY_MENU        "Contains commands for working with the whole registry"
135     ID_EDIT_MENU            "Contains commands for editing values or keys"
136     ID_VIEW_MENU            "Contains commands for customising the registry window"
137     ID_FAVORITES_MENU       "Contains commands for accessing frequently used keys"
138     ID_HELP_MENU            "Contains commands for displaying help and information about registry editor"
139     ID_EDIT_NEW_MENU        "Contains commands for creating new keys or values"
142 STRINGTABLE
143 BEGIN
144     ID_EDIT_MODIFY          "Modifies the value's data"
145     ID_EDIT_NEW_KEY         "Adds a new key"
146     ID_EDIT_NEW_STRINGVALUE "Adds a new string value"
147     ID_EDIT_NEW_BINARYVALUE "Adds a new binary value"
148     ID_EDIT_NEW_DWORDVALUE  "Adds a new double word value"
149     ID_EDIT_NEW_MULTI_STRINGVALUE "Adds a new multi string value"
150     ID_REGISTRY_IMPORTREGISTRYFILE "Imports a text file into the registry"
151     ID_REGISTRY_EXPORTREGISTRYFILE
152                             "Exports all or part of the registry to a text file"
153     ID_REGISTRY_PRINT       "Prints all or part of the registry"
154 /*    ID_HELP_HELPTOPICS      "Opens registry editor help" */
155     ID_HELP_ABOUT           "Displays program information, version number and copyright"
158 STRINGTABLE
159 BEGIN
160     ID_REGISTRY_EXIT        "Quits the registry editor"
161     ID_FAVORITES_ADDTOFAVORITES "Adds keys to the favorites list"
162     ID_FAVORITES_REMOVEFAVORITE "Removes keys from the favorites list"
163     ID_VIEW_STATUSBAR       "Shows or hides the status bar"
164     ID_VIEW_SPLIT           "Change position of split between two panes"
165     ID_VIEW_REFRESH         "Refreshes the window"
166     ID_EDIT_DELETE          "Deletes the selection"
167     ID_EDIT_RENAME          "Renames the selection"
168     ID_EDIT_COPYKEYNAME     "Copies the name of the selected key to the clipboard"
169     ID_EDIT_FIND            "Finds a text string in a key, value or data"
170     ID_EDIT_FINDNEXT        "Finds next occurrence of text specified in previous search"
171     ID_EDIT_EXPORT          "Exports selected branch of the registry to a text file"
174 STRINGTABLE
175 BEGIN
176     IDS_ERROR               "Error"
177     IDS_BAD_KEY             "Can't query key '%s'"
178     IDS_BAD_VALUE           "Can't query value '%s'"
179     IDS_UNSUPPORTED_TYPE    "Can't edit keys of this type (%u)"
180     IDS_TOO_BIG_VALUE       "Value is too big (%u)"
181     IDS_DELETE_BOX_TITLE    "Confirm Value Delete"
182     IDS_DELETE_BOX_TEXT     "Are you sure you want to delete value '%s'?"
183     IDS_DELETE_BOX_TEXT_MULTIPLE "Are you sure you want to delete these values?"
184     IDS_NEWKEY              "New Key #%d"
185     IDS_NEWVALUE            "New Value #%d"
186     IDS_NOTFOUND            "Search string '%s' not found"
189 STRINGTABLE
190 BEGIN
191     IDS_FILEDIALOG_IMPORT_TITLE   "Import Registry File"
192     IDS_FILEDIALOG_EXPORT_TITLE   "Export Registry File"
193     IDS_FILEDIALOG_FILTER_REG     "Registry files (*.reg)"
194     IDS_FILEDIALOG_FILTER_REG4    "Win9x/NT4 Registry files (REGEDIT4)"
195     IDS_FILEDIALOG_FILTER_ALL     "All files (*.*)"
198 STRINGTABLE
199 BEGIN
200     IDS_REGISTRY_ROOT_NAME           "My Computer"
201     IDS_REGISTRY_DEFAULT_VALUE       "(Default)"
202     IDS_REGISTRY_VALUE_NOT_SET       "(value not set)"
203     IDS_REGISTRY_VALUE_CANT_DISPLAY  "(cannot display value)"
204     IDS_REGISTRY_UNKNOWN_TYPE        "(unknown %d)"
207 /* define language neutral resources */
209 LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
211 /* @makedep: folderopen.ico */
212 IDI_OPEN_FILE ICON folderopen.ico
214 /* @makedep: folder.ico */
215 IDI_CLOSED_FILE ICON folder.ico
217 /* @makedep: computer.ico */
218 IDI_ROOT ICON computer.ico
220 /* @makedep: string.ico */
221 IDI_STRING ICON string.ico
223 /* @makedep: bin.ico */
224 IDI_BIN  ICON bin.ico
226 /* @makedep: regedit.ico */
227 IDI_REGEDIT ICON regedit.ico
229 #define WINE_FILEDESCRIPTION_STR "Wine Registry Editor"
230 #define WINE_FILENAME "REGEDIT"
231 #define WINE_FILENAME_STR "REGEDIT.EXE"
232 #define WINE_FILETYPE VFT_APP
233 #define WINE_FILEVERSION 5,2,3790,0
234 #define WINE_FILEVERSION_STR "5.2.3790.0"
236 #define WINE_PRODUCTVERSION 5,2,3790,0
237 #define WINE_PRODUCTVERSION_STR "5.2"
239 #include "wine/wine_common_ver.rc"