Added ES_AUTOHSCROLL style to the edittext changing text data.
[wine/multimedia.git] / programs / regedit / En.rc
blob813daceaee00ff23999fcec13250f967f4b93a6f
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
21 LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
24  * Menu
25  */
27 IDC_REGEDIT MENU DISCARDABLE
28 BEGIN
29     POPUP "&File"
30     BEGIN
31         MENUITEM "E&xit",                       ID_REGISTRY_EXIT
32     END
33     POPUP "&Help"
34     BEGIN
35         MENUITEM "&About ...",                  ID_HELP_ABOUT
36     END
37 END
39 IDR_REGEDIT_MENU MENU DISCARDABLE
40 BEGIN
41     POPUP "&Registry"
42     BEGIN
43         MENUITEM "&Import Registry File...",    ID_REGISTRY_IMPORTREGISTRYFILE
44         MENUITEM "&Export Registry File...",    ID_REGISTRY_EXPORTREGISTRYFILE
45         MENUITEM SEPARATOR
46         MENUITEM "&Connect Network Registry...", ID_REGISTRY_CONNECTNETWORKREGISTRY, GRAYED
47         MENUITEM "&Disconnect Network Registry...", ID_REGISTRY_DISCONNECTNETWORKREGISTRY, GRAYED
48         MENUITEM SEPARATOR
49         MENUITEM "&Print\tCtrl+P",              ID_REGISTRY_PRINT, GRAYED
50         MENUITEM SEPARATOR
51         MENUITEM "E&xit",                       ID_REGISTRY_EXIT
52     END
53     POPUP "&Edit"
54     BEGIN
55         MENUITEM "&Modify",                     ID_EDIT_MODIFY
56         MENUITEM SEPARATOR
57         POPUP "&New"
58         BEGIN
59             MENUITEM "&Key",                        ID_EDIT_NEW_KEY
60             MENUITEM SEPARATOR
61             MENUITEM "&String Value",               ID_EDIT_NEW_STRINGVALUE
62             MENUITEM "&Binary Value",               ID_EDIT_NEW_BINARYVALUE
63             MENUITEM "&DWORD Value",                ID_EDIT_NEW_DWORDVALUE
64         END
65         MENUITEM SEPARATOR
66         MENUITEM "&Delete\tDel",                ID_EDIT_DELETE
67         MENUITEM "&Rename\tF2",                 ID_EDIT_RENAME
68         MENUITEM SEPARATOR
69         MENUITEM "&Copy Key Name",              ID_EDIT_COPYKEYNAME
70         MENUITEM SEPARATOR
71         MENUITEM "&Find\tCtrl+F",               ID_EDIT_FIND, GRAYED
72         MENUITEM "Find Ne&xt\tF3",              ID_EDIT_FINDNEXT, GRAYED
73     END
74     POPUP "&View"
75     BEGIN
76         MENUITEM "Status &Bar",                 ID_VIEW_STATUSBAR
77         MENUITEM SEPARATOR
78         MENUITEM "Sp&lit",                      ID_VIEW_SPLIT
79         MENUITEM SEPARATOR
80         MENUITEM "&Refresh\tF5",                ID_VIEW_REFRESH
81     END
82     POPUP "&Favorites"
83     BEGIN
84         MENUITEM "&Add to Favorites",          ID_FAVORITES_ADDTOFAVORITES
85         , GRAYED
86         MENUITEM "&Remove Favorite",           ID_FAVORITES_REMOVEFAVORITE
87         , GRAYED
88     END
89     POPUP "&Help"
90     BEGIN
91         MENUITEM "&Help Topics\tF1",            ID_HELP_HELPTOPICS
92         MENUITEM SEPARATOR
93         MENUITEM "&About Registry Editor",      ID_HELP_ABOUT
94     END
95 END
97 IDR_POPUP_MENUS MENU DISCARDABLE
98 BEGIN
99   POPUP ""
100   BEGIN
101         MENUITEM "&Modify",                     ID_EDIT_MODIFY
102         MENUITEM "Modify Binary Data",          ID_EDIT_MODIFY_BIN
103         MENUITEM SEPARATOR
104         MENUITEM "&Delete\tDel",                ID_EDIT_DELETE
105         MENUITEM "&Rename",                     ID_EDIT_RENAME
106   END
107   POPUP ""
108   BEGIN
109         POPUP "&New"
110         BEGIN
111             MENUITEM "&Key",                        ID_EDIT_NEW_KEY
112             MENUITEM SEPARATOR
113             MENUITEM "&String Value",               ID_EDIT_NEW_STRINGVALUE
114             MENUITEM "&Binary Value",               ID_EDIT_NEW_BINARYVALUE
115             MENUITEM "&DWORD Value",                ID_EDIT_NEW_DWORDVALUE
116         END
117         MENUITEM SEPARATOR
118         MENUITEM "&Delete\tDel",                ID_EDIT_DELETE
119         MENUITEM "&Rename\tF2",                 ID_EDIT_RENAME
120         MENUITEM SEPARATOR
121         MENUITEM "&Copy Key Name",              ID_EDIT_COPYKEYNAME
122         MENUITEM SEPARATOR
123         MENUITEM "&Find\tCtrl+F",               ID_EDIT_FIND, GRAYED
124   END
129  * Dialog
130  */
132 IDD_ABOUTBOX DIALOG DISCARDABLE  22, 17, 230, 75
133 STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
134 CAPTION "About"
135 FONT 8, "MS Shell Dlg"
136 BEGIN
137     ICON            IDI_REGEDIT,IDI_REGEDIT,14,9,16,16
138     LTEXT           "ReactOS regedit Version 1.0",IDC_STATIC,49,10,119,8,
139                     SS_NOPREFIX
140     LTEXT           "Copyright (C) 2002 ReactOS Team",IDC_STATIC,49,20,119,8
141     DEFPUSHBUTTON   "OK",IDOK,195,6,30,11,WS_GROUP
144 IDD_EDIT_STRING DIALOG DISCARDABLE  22, 17, 210, 75
145 STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
146 CAPTION "Edit String"
147 FONT 8, "MS Shell Dlg"
148 BEGIN
149     LTEXT           "Value name:",IDC_STATIC,5,5,119,8
150     EDITTEXT        IDC_VALUE_NAME,5,15,200,12, WS_BORDER | WS_TABSTOP | WS_DISABLED
151     LTEXT           "Value data:",IDC_STATIC,5,30,119,8
152     EDITTEXT        IDC_VALUE_DATA,5,40,200,12, WS_BORDER | WS_TABSTOP | ES_AUTOHSCROLL
153     DEFPUSHBUTTON   "OK",IDOK,140,60,30,11,WS_GROUP
154     PUSHBUTTON   "Cancel",IDCANCEL,175,60,30,11,WS_GROUP
157 IDD_EDIT_DWORD DIALOG DISCARDABLE  22, 17, 210, 100
158 STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
159 CAPTION "Edit DWORD"
160 FONT 8, "MS Shell Dlg"
161 BEGIN
162     LTEXT           "Value name:",IDC_STATIC,5,5,119,8
163     EDITTEXT        IDC_VALUE_NAME,5,15,200,12, WS_BORDER | WS_TABSTOP | WS_DISABLED
164     LTEXT           "Value data:",IDC_STATIC,5,30,90,8
165     EDITTEXT        IDC_VALUE_DATA,5,40,90,12, WS_BORDER | WS_TABSTOP
166     GROUPBOX        "Base", IDC_DWORD_BASE, 120, 30, 85, 37, BS_GROUPBOX
167     AUTORADIOBUTTON "Hexadecimal", IDC_DWORD_HEX, 130, 40, 60, 10, WS_TABSTOP
168     AUTORADIOBUTTON "Decimal", IDC_DWORD_DEC, 130, 52, 60, 10, WS_TABSTOP
169     DEFPUSHBUTTON   "OK",IDOK,140,80,30,11,WS_GROUP
170     PUSHBUTTON   "Cancel",IDCANCEL,175,80,30,11,WS_GROUP
174  * String Table
175  */
177 STRINGTABLE DISCARDABLE
178 BEGIN
179     IDS_LIST_COLUMN_NAME    "Name"
180     IDS_LIST_COLUMN_TYPE    "Type"
181     IDS_LIST_COLUMN_DATA    "Data"
184 STRINGTABLE DISCARDABLE
185 BEGIN
186     IDS_APP_TITLE           "Registry Editor"
187     IDC_REGEDIT             "REGEDIT"
188     IDC_REGEDIT_FRAME       "REGEDIT_FRAME"
191 STRINGTABLE DISCARDABLE
192 BEGIN
193     ID_REGISTRY_MENU        "Contains commands for working with the whole registry"
194     ID_EDIT_MENU            "Contains commands for editing values or keys"
195     ID_VIEW_MENU            "Contains commands for customising the registry window"
196     ID_FAVORITES_MENU       "Contains commands for accessing frequently used keys"
197     ID_HELP_MENU            "Contains commands for displaying help and information about registry editor"
198     ID_EDIT_NEW_MENU        "Contains commands for creating new keys or values"
201 STRINGTABLE DISCARDABLE
202 BEGIN
203     ID_EDIT_MODIFY          "Modifies the value's data"
204     ID_EDIT_NEW_KEY         "Adds a new key"
205     ID_EDIT_NEW_STRINGVALUE "Adds a new string value"
206     ID_EDIT_NEW_BINARYVALUE "Adds a new binary value"
207     ID_EDIT_NEW_DWORDVALUE  "Adds a new double word value"
208     ID_REGISTRY_IMPORTREGISTRYFILE "Imports a text file into the registry"
209     ID_REGISTRY_EXPORTREGISTRYFILE
210                             "Exports all or part of the registry to a text file"
211     ID_REGISTRY_CONNECTNETWORKREGISTRY
212                             "Connects to a remote computer's registry"
213     ID_REGISTRY_DISCONNECTNETWORKREGISTRY
214                             "Disconnects from a remote computer's registry"
215     ID_REGISTRY_PRINT       "Prints all or part of the registry"
216 /*    ID_HELP_HELPTOPICS      "Opens registry editor help" */
217     ID_HELP_ABOUT           "Displays program information, version number and copyright"
220 STRINGTABLE DISCARDABLE
221 BEGIN
222     ID_REGISTRY_EXIT        "Quits the registry editor"
223     ID_FAVORITES_ADDTOFAVORITES "Adds keys to the favorites list"
224     ID_FAVORITES_REMOVEFAVORITE "Removes keys from the favorites list"
225     ID_VIEW_STATUSBAR       "Shows or hides the status bar"
226     ID_VIEW_SPLIT           "Change position of split between two panes"
227     ID_VIEW_REFRESH         "Refreshes the window"
228     ID_EDIT_DELETE          "Deletes the selection"
229     ID_EDIT_RENAME          "Renames the selection"
230     ID_EDIT_COPYKEYNAME     "Copies the name of the selected key to the clipboard"
231     ID_EDIT_FIND            "Finds a text string in a key, value or data"
232     ID_EDIT_FINDNEXT        "Finds next occurrence of text specified in previous search"
235 STRINGTABLE DISCARDABLE
236 BEGIN
237     IDS_ERROR               "Error"
238     IDS_BAD_KEY             "Can't query key '%s'"
239     IDS_BAD_VALUE           "Can't query value '%s'"
240     IDS_UNSUPPORTED_TYPE    "Can't edit keys of this type (%ld)"
241     IDS_TOO_BIG_VALUE       "Value is too big (%ld)"
242     IDS_DELETE_BOX_TITLE    "Confirm Value Delete"
243     IDS_DELETE_BOX_TEXT     "Are you sure you want to delete value '%s'?"
244     IDS_NEWKEY              "New Key #%d"
245     IDS_NEWVALUE            "New Value #%d"
248 /*****************************************************************/
252  * Dialog
253  */
255 IDD_DIALOG1 DIALOG DISCARDABLE  50, 50, 268, 98
256 STYLE DS_3DLOOK | DS_CONTROL | WS_CHILD | WS_VISIBLE | WS_CLIPSIBLINGS |
257     WS_BORDER
258 FONT 8, "MS Shell Dlg"
259 BEGIN
262 IDD_DIALOG2 DIALOG DISCARDABLE  0, 0, 187, 95
263 STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
264 CAPTION "Dialog"
265 FONT 8, "MS Shell Dlg"
266 BEGIN
267     DEFPUSHBUTTON   "OK",IDOK,130,7,50,14
268     PUSHBUTTON      "Cancel",IDCANCEL,130,24,50,14
273  * TEXTINCLUDE
274  */
276 1 TEXTINCLUDE DISCARDABLE
277 BEGIN
278     "resource.h\0"
284  * String Table
285  */
288  *STRINGTABLE DISCARDABLE
289  *BEGIN
290  *    ID_HELP_HELPTOPICS      "Opens Registry Editor Help."
291  *    ID_HELP_ABOUT           "Displays program information, version number, and copyright."
292  *END
293  */
295 /*****************************************************************/