Added support for editing strings.
[wine/testsucceed.git] / programs / regedit / En.rc
blob6d113ed093a09f9013a63e92afe9d626fa39b7d4
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
45         MENUITEM "&Export Registry File...",    ID_REGISTRY_EXPORTREGISTRYFILE
47         MENUITEM SEPARATOR
48         MENUITEM "&Connect Network Registry...",
49                                                 ID_REGISTRY_CONNECTNETWORKREGISTRY
50         , GRAYED
51         MENUITEM "&Disconnect Network Registry...",
52                                                 ID_REGISTRY_DISCONNECTNETWORKREGISTRY
53         , GRAYED
54         MENUITEM SEPARATOR
55         MENUITEM "&Print\tCtrl+P",              ID_REGISTRY_PRINT, GRAYED
56         MENUITEM SEPARATOR
57         MENUITEM "E&xit",                       ID_REGISTRY_EXIT
58     END
59     POPUP "&Edit"
60     BEGIN
61         MENUITEM "&Modify",                     ID_EDIT_MODIFY
62         MENUITEM SEPARATOR
63         POPUP "&New"
64         BEGIN
65             MENUITEM "&Key",                        ID_EDIT_NEW_KEY
66             MENUITEM SEPARATOR
67             MENUITEM "&String Value",               ID_EDIT_NEW_STRINGVALUE
68             MENUITEM "&Binary Value",               ID_EDIT_NEW_BINARYVALUE
69             MENUITEM "&DWORD Value",                ID_EDIT_NEW_DWORDVALUE
70         END
71         MENUITEM SEPARATOR
72         MENUITEM "&Delete\tDel",                ID_EDIT_DELETE
73         MENUITEM "&Rename",                     ID_EDIT_RENAME
74         MENUITEM SEPARATOR
75         MENUITEM "&Copy Key Name",              ID_EDIT_COPYKEYNAME
76         MENUITEM SEPARATOR
77         MENUITEM "&Find\tCtrl+F",               ID_EDIT_FIND, GRAYED
78         MENUITEM "Find Ne&xt\tF3",              ID_EDIT_FINDNEXT, GRAYED
79     END
80     POPUP "&View"
81     BEGIN
82         MENUITEM "Status &Bar",                 ID_VIEW_STATUSBAR
83         MENUITEM SEPARATOR
84         MENUITEM "Sp&lit",                      ID_VIEW_SPLIT
85         MENUITEM SEPARATOR
86         MENUITEM "&Refresh\tF5",                ID_VIEW_REFRESH
87     END
88     POPUP "&Favourites"
89     BEGIN
90         MENUITEM "&Add to Favourites",          ID_FAVOURITES_ADDTOFAVOURITES
91         , GRAYED
92         MENUITEM "&Remove Favourite",           ID_FAVOURITES_REMOVEFAVOURITE
93         , GRAYED
94     END
95     POPUP "&Help"
96     BEGIN
98  *        MENUITEM "&Help Topics",                ID_HELP_HELPTOPICS
99  *        MENUITEM SEPARATOR
100  */
101         MENUITEM "&About Registry Editor",      ID_HELP_ABOUT
102     END
107  * Dialog
108  */
110 IDD_ABOUTBOX DIALOG DISCARDABLE  22, 17, 230, 75
111 STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
112 CAPTION "About"
113 FONT 8, "System"
114 BEGIN
115     ICON            IDI_REGEDIT,IDI_REGEDIT,14,9,16,16
116     LTEXT           "ReactOS regedit Version 1.0",IDC_STATIC,49,10,119,8,
117                     SS_NOPREFIX
118     LTEXT           "Copyright (C) 2002 ReactOS Team",IDC_STATIC,49,20,119,8
119     DEFPUSHBUTTON   "OK",IDOK,195,6,30,11,WS_GROUP
122 IDD_EDIT_STRING DIALOG DISCARDABLE  22, 17, 210, 75
123 STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
124 CAPTION "Edit String"
125 FONT 8, "System"
126 BEGIN
127     LTEXT           "Value name:",IDC_STATIC,5,5,119,8
128     EDITTEXT        IDC_VALUE_NAME,5,15,200,12, WS_BORDER | WS_TABSTOP | WS_DISABLED
129     LTEXT           "Value data:",IDC_STATIC,5,30,119,8
130     EDITTEXT        IDC_VALUE_DATA,5,40,200,12, WS_BORDER | WS_TABSTOP
131     DEFPUSHBUTTON   "OK",IDOK,140,60,30,11,WS_GROUP
132     DEFPUSHBUTTON   "Cancel",IDCANCEL,175,60,30,11,WS_GROUP
137  * String Table
138  */
140 STRINGTABLE DISCARDABLE
141 BEGIN
142     IDS_LIST_COLUMN_NAME    "Name"
143     IDS_LIST_COLUMN_TYPE    "Type"
144     IDS_LIST_COLUMN_DATA    "Data"
147 STRINGTABLE DISCARDABLE
148 BEGIN
149     IDS_APP_TITLE           "Registry Editor"
150     IDC_REGEDIT             "REGEDIT"
151     IDC_REGEDIT_FRAME       "REGEDIT_FRAME"
154 STRINGTABLE DISCARDABLE
155 BEGIN
156     ID_REGISTRY_MENU        "Contains commands for working with the whole registry"
157     ID_EDIT_MENU            "Contains commands for editing values or keys"
158     ID_VIEW_MENU            "Contains commands for customising the registry window"
159     ID_FAVOURITES_MENU      "Contains commands for accessing frequently used keys"
160     ID_HELP_MENU            "Contains commands for displaying help and information about registry editor"
161     ID_EDIT_NEW_MENU        "Contains commands for creating new keys or values"
164 STRINGTABLE DISCARDABLE
165 BEGIN
166     ID_EDIT_MODIFY          "Modifies the value's data"
167     ID_EDIT_NEW_KEY         "Adds a new key"
168     ID_EDIT_NEW_STRINGVALUE "Adds a new string value"
169     ID_EDIT_NEW_BINARYVALUE "Adds a new binary value"
170     ID_EDIT_NEW_DWORDVALUE  "Adds a new double word value"
171     ID_REGISTRY_IMPORTREGISTRYFILE "Imports a text file into the registry"
172     ID_REGISTRY_EXPORTREGISTRYFILE
173                             "Exports all or part of the registry to a text file"
174     ID_REGISTRY_CONNECTNETWORKREGISTRY
175                             "Connects to a remote computer's registry"
176     ID_REGISTRY_DISCONNECTNETWORKREGISTRY
177                             "Disconnects from a remote computer's registry"
178     ID_REGISTRY_PRINT       "Prints all or part of the registry"
179 /*    ID_HELP_HELPTOPICS      "Opens registry editor help" */
180     ID_HELP_ABOUT           "Displays program information, version number and copyright"
183 STRINGTABLE DISCARDABLE
184 BEGIN
185     ID_REGISTRY_EXIT        "Quits the registry editor"
186     ID_FAVOURITES_ADDTOFAVOURITES "Adds keys to the favourites list"
187     ID_FAVOURITES_REMOVEFAVOURITE "Removes keys from the favourites list"
188     ID_VIEW_STATUSBAR       "Shows or hides the status bar"
189     ID_VIEW_SPLIT           "Change position of split between two panes"
190     ID_VIEW_REFRESH         "Refreshes the window"
191     ID_EDIT_DELETE          "Deletes the selection"
192     ID_EDIT_RENAME          "Renames the selection"
193     ID_EDIT_COPYKEYNAME     "Copies the name of the selected key to the clipboard"
194     ID_EDIT_FIND            "Finds a text string in a key, value or data"
195     ID_EDIT_FINDNEXT        "Finds next occurrence of text specified in previous search"
198 STRINGTABLE DISCARDABLE
199 BEGIN
200     IDS_ERROR               "Error"
201     IDS_BAD_VALUE           "Can't query value '%s'"
202     IDS_UNSUPPORTED_TYPE    "Can't edit keys of this type (%ld)"
203     IDS_TOO_BIG_VALUE       "Value is too big (%ld)"
206 /*****************************************************************/
210  * Dialog
211  */
213 IDD_DIALOG1 DIALOG DISCARDABLE  50, 50, 268, 98
214 STYLE DS_3DLOOK | DS_CONTROL | WS_CHILD | WS_VISIBLE | WS_CLIPSIBLINGS |
215     WS_BORDER
216 FONT 8, "MS Sans Serif"
217 BEGIN
220 IDD_DIALOG2 DIALOG DISCARDABLE  0, 0, 187, 95
221 STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
222 CAPTION "Dialog"
223 FONT 8, "MS Sans Serif"
224 BEGIN
225     DEFPUSHBUTTON   "OK",IDOK,130,7,50,14
226     PUSHBUTTON      "Cancel",IDCANCEL,130,24,50,14
231  * TEXTINCLUDE
232  */
234 1 TEXTINCLUDE DISCARDABLE
235 BEGIN
236     "resource.h\0"
242  * String Table
243  */
246  *STRINGTABLE DISCARDABLE
247  *BEGIN
248  *    ID_HELP_HELPTOPICS      "Opens Registry Editor Help."
249  *    ID_HELP_ABOUT           "Displays program information, version number, and copyright."
250  *END
251  */
253 /*****************************************************************/