1LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
2
3IDR_MAINMENU MENU
4BEGIN
5    POPUP "&File"
6    BEGIN
7        MENUITEM "&Export...", ID_EXPORT
8        MENUITEM SEPARATOR
9        MENUITEM "E&xit", ID_EXIT
10    END
11    POPUP "&Action"
12    BEGIN
13        MENUITEM "&Connect to...", ID_CONNECT, GRAYED
14        MENUITEM SEPARATOR
15        MENUITEM "&Start", ID_START, GRAYED
16        MENUITEM "St&op", ID_STOP, GRAYED
17        MENUITEM "&Pause", ID_PAUSE, GRAYED
18        MENUITEM "Resu&me", ID_RESUME, GRAYED
19        MENUITEM "Rest&art", ID_RESTART, GRAYED
20        MENUITEM SEPARATOR
21        MENUITEM "Re&fresh\tF5", ID_REFRESH
22        MENUITEM SEPARATOR
23        MENUITEM "&Edit...", ID_EDIT, GRAYED
24        MENUITEM "Crea&te...", ID_CREATE, GRAYED
25        MENUITEM "&Delete...", ID_DELETE, GRAYED
26        MENUITEM SEPARATOR
27        MENUITEM "P&roperties...", ID_PROP, GRAYED
28    END
29    POPUP "&View"
30    BEGIN
31        MENUITEM "Lar&ge Icons", ID_VIEW_LARGE
32        MENUITEM "S&mall Icons", ID_VIEW_SMALL
33        MENUITEM "&List", ID_VIEW_LIST
34        MENUITEM "&Details", ID_VIEW_DETAILS
35        MENUITEM SEPARATOR
36        MENUITEM "C&ustomize...", ID_VIEW_CUST, GRAYED
37    END
38    POPUP "&Help"
39    BEGIN
40        MENUITEM "&Help", ID_HELP
41        MENUITEM "&About", ID_ABOUT
42    END
43END
44
45IDR_POPUP MENU
46BEGIN
47    POPUP "popup"
48    BEGIN
49        MENUITEM "&Start", ID_START, GRAYED
50        MENUITEM "St&op", ID_STOP, GRAYED
51        MENUITEM "Pa&use", ID_PAUSE, GRAYED
52        MENUITEM "Resu&me", ID_RESUME, GRAYED
53        MENUITEM "Rest&art", ID_RESTART, GRAYED
54        MENUITEM SEPARATOR
55        MENUITEM "Re&fresh", ID_REFRESH
56        MENUITEM SEPARATOR
57        MENUITEM "&Edit...", ID_EDIT, GRAYED
58        MENUITEM "Dele&te...", ID_DELETE, GRAYED
59        MENUITEM SEPARATOR
60        MENUITEM "P&roperties...", ID_PROP, GRAYED
61        MENUITEM SEPARATOR
62        MENUITEM "Help...", ID_HELP
63    END
64END
65
66IDA_SERVMAN ACCELERATORS
67BEGIN
68    VK_F5, ID_REFRESH, VIRTKEY
69END
70
71IDD_DLG_GENERAL DIALOGEX 6, 6, 253, 232
72CAPTION "General"
73FONT 8, "MS Shell Dlg", 0, 0
74STYLE DS_SHELLFONT | WS_BORDER | WS_VISIBLE | WS_DLGFRAME | WS_SYSMENU | WS_GROUP | WS_TABSTOP
75BEGIN
76    LTEXT "", IDC_SERV_NAME, 70, 11, 176, 11, WS_CHILD | WS_VISIBLE
77    EDITTEXT IDC_DISP_NAME, 70, 29, 176, 13, WS_CHILD | WS_VISIBLE | WS_TABSTOP | ES_READONLY
78    EDITTEXT IDC_DESCRIPTION, 70, 46, 176, 24, WS_CHILD | WS_VISIBLE | WS_VSCROLL | WS_TABSTOP | ES_MULTILINE | ES_READONLY
79    EDITTEXT IDC_EXEPATH, 6, 86, 239, 13, WS_CHILD | WS_VISIBLE | WS_TABSTOP | ES_READONLY
80    COMBOBOX IDC_START_TYPE, 70, 107, 176, 40, WS_CHILD | WS_VISIBLE | WS_TABSTOP | CBS_DROPDOWNLIST
81    PUSHBUTTON "&Start", IDC_START, 6, 155, 54, 15, WS_DISABLED
82    PUSHBUTTON "S&top", IDC_STOP, 68, 155, 54, 15, WS_DISABLED
83    PUSHBUTTON "&Pause", IDC_PAUSE, 130, 155, 54, 15, WS_DISABLED
84    PUSHBUTTON "&Resume", IDC_RESUME, 192, 155, 54, 15, WS_DISABLED
85    LTEXT "Service name:", IDC_STATIC, 7, 11, 53, 11
86    LTEXT "Display name:", IDC_STATIC, 7, 29, 53, 11
87    LTEXT "Description:", IDC_STATIC, 7, 51, 53, 11
88    LTEXT "Path to executable:", IDC_STATIC, 7, 73, 82, 9
89    LTEXT "Startup type:", IDC_STATIC, 7, 108, 53, 11
90    LTEXT "Service status:", IDC_STATIC, 7, 138, 53, 11
91    LTEXT "", IDC_SERV_STATUS, 70, 138, 176, 11, WS_CHILD | WS_VISIBLE
92    LTEXT "You can specify the start parameters that apply when you start the service from here.", IDC_STATIC, 7, 177, 240, 15
93    LTEXT "Start parameters:", IDC_STATIC, 7, 200, 58, 11
94    EDITTEXT IDC_START_PARAM, 68, 199, 178, 13, WS_CHILD | WS_VISIBLE | WS_TABSTOP
95    PUSHBUTTON "Edit", IDC_EDIT, 192, 215, 54, 15, WS_DISABLED
96END
97
98IDD_LOGON DIALOGEX 6, 6, 253, 232
99CAPTION "Log On"
100FONT 8, "MS Shell Dlg", 0, 0
101STYLE DS_SHELLFONT | WS_BORDER | WS_VISIBLE | WS_DLGFRAME | WS_SYSMENU | WS_GROUP | WS_TABSTOP
102BEGIN
103    LTEXT "Log on as:", IDC_STATIC, 7, 7, 238, 8
104    AUTORADIOBUTTON "&Local System account", IDC_LOGON_SYSTEMACCOUNT, 7, 22, 238, 10, BS_TOP | BS_MULTILINE | WS_CHILD | WS_VISIBLE | WS_GROUP | WS_TABSTOP
105    AUTORADIOBUTTON "&This account:", IDC_LOGON_THISACCOUNT, 7, 52, 60, 10, BS_TOP | BS_MULTILINE | WS_CHILD | WS_VISIBLE
106    AUTOCHECKBOX "Allo&w service to interact with desktop", IDC_LOGON_INTERACTIVE, 18, 34, 227, 10, WS_CHILD | WS_VISIBLE | WS_GROUP | WS_TABSTOP | BS_TOP | BS_MULTILINE
107    EDITTEXT IDC_LOGON_ACCOUNTNAME, 72, 50, 103, 14, ES_LEFT | ES_AUTOHSCROLL | WS_CHILD | WS_VISIBLE | WS_BORDER | WS_GROUP | WS_TABSTOP
108    PUSHBUTTON "&Browse...", IDC_LOGON_SEARCH, 185, 50, 60, 14, WS_CHILD | WS_VISIBLE | WS_TABSTOP
109    LTEXT "&Password:", IDC_LOGON_PW1TEXT, 18, 71, 33, 8, WS_CHILD | WS_VISIBLE | WS_DISABLED | WS_GROUP
110    EDITTEXT IDC_LOGON_PASSWORD1, 72, 68, 104, 14, ES_LEFT | ES_PASSWORD | ES_AUTOHSCROLL | WS_CHILD | WS_VISIBLE | WS_BORDER | WS_TABSTOP
111    LTEXT "&Confirm password:", IDC_LOGON_PW2TEXT, 18, 84, 47, 18, WS_CHILD | WS_VISIBLE | WS_DISABLED | WS_GROUP
112    EDITTEXT IDC_LOGON_PASSWORD2, 72, 86, 104, 14, ES_LEFT | ES_PASSWORD | ES_AUTOHSCROLL | WS_CHILD | WS_VISIBLE | WS_BORDER | WS_TABSTOP
113    LTEXT "You can enable or disable this service for the hardware profiles listed below:", IDC_STATIC, 7, 114, 210, 8, WS_CHILD | WS_VISIBLE | WS_GROUP
114    CONTROL "", IDC_LOGON_HWPROFILE, "SysListView32", LVS_REPORT | LVS_SINGLESEL | LVS_SHOWSELALWAYS | LVS_NOSORTHEADER | WS_CHILD | WS_VISIBLE | WS_BORDER | WS_GROUP | WS_TABSTOP, 7, 124, 238, 65
115    PUSHBUTTON "&Enable", IDC_LOGON_HWENABLE, 116, 197, 60, 14, WS_CHILD | WS_VISIBLE | WS_TABSTOP | WS_DISABLED
116    PUSHBUTTON "&Disable", IDC_LOGON_HWDISABLE, 185, 197, 60, 14, WS_CHILD | WS_VISIBLE | WS_TABSTOP | WS_DISABLED
117END
118
119IDD_RECOVERY DIALOGEX 6, 6, 253, 232
120CAPTION "Recovery"
121FONT 8, "MS Shell Dlg", 0, 0
122STYLE DS_SHELLFONT | WS_BORDER | WS_VISIBLE | WS_DLGFRAME | WS_SYSMENU | WS_GROUP | WS_TABSTOP
123BEGIN
124    LTEXT "Select the computer's response if this service fails.", IDC_STATIC, 7, 7, 238, 8
125    LTEXT "&First failure:", IDC_STATIC, 7, 24, 92, 8
126    COMBOBOX IDC_FIRST_FAILURE, 104, 22, 141, 147, WS_CHILD | WS_VISIBLE | WS_TABSTOP | CBS_DROPDOWNLIST
127    LTEXT "&Second failure:", IDC_STATIC, 7, 41, 92, 8
128    COMBOBOX IDC_SECOND_FAILURE, 104, 39, 141, 147, WS_CHILD | WS_VISIBLE | WS_TABSTOP | CBS_DROPDOWNLIST
129    LTEXT "Subsequent failures:", IDC_STATIC, 7, 58, 92, 8
130    COMBOBOX IDC_SUBSEQUENT_FAILURES, 104, 56, 141, 147, WS_CHILD | WS_VISIBLE | WS_TABSTOP | CBS_DROPDOWNLIST
131    LTEXT "Reset fail c&ounter after:", IDC_STATIC, 7, 75, 72, 8
132    EDITTEXT IDC_RESET_TIME, 104, 73, 40, 13, WS_CHILD | WS_VISIBLE | WS_BORDER | WS_TABSTOP | ES_LEFT | ES_AUTOHSCROLL | ES_NUMBER
133    LTEXT "days", IDC_STATIC, 150, 75, 95, 8
134    LTEXT "Restart ser&vice after:", IDC_RESTART_TEXT1, 7, 92, 92, 8
135    EDITTEXT IDC_RESTART_TIME, 104, 90, 40, 13, WS_CHILD | WS_VISIBLE | WS_BORDER | WS_TABSTOP | ES_LEFT | ES_AUTOHSCROLL | ES_NUMBER
136    LTEXT "minutes", IDC_RESTART_TEXT2, 150, 92, 95, 8
137    GROUPBOX "Run program", IDC_RUN_GROUPBOX, 7, 108, 238, 80
138    LTEXT "&Program:", IDC_RUN_TEXT1, 14, 121, 168, 8
139    EDITTEXT IDC_PROGRAM, 14, 131, 165, 14
140    PUSHBUTTON "&Browse...", IDC_BROWSE_PROGRAM, 180, 131, 58, 14
141    LTEXT "&Command line parameters:", IDC_RUN_TEXT2, 14, 155, 108, 8
142    EDITTEXT IDC_PARAMETERS, 128, 152, 110, 14
143    AUTOCHECKBOX "Append fail count to &end of command line (/fail=%1%)", IDC_ADD_FAILCOUNT, 14, 171, 219, 10, WS_CHILD | WS_VISIBLE | WS_TABSTOP | BS_TOP | BS_MULTILINE
144    PUSHBUTTON "&Restart Computer Options...", IDC_RESTART_OPTIONS, 116, 197, 129, 14
145END
146
147IDD_DLG_DEPEND DIALOGEX 6, 6, 253, 225
148CAPTION "Dependencies"
149FONT 8, "MS Shell Dlg", 0, 0
150STYLE DS_SHELLFONT | WS_BORDER | WS_VISIBLE | WS_DLGFRAME | WS_SYSMENU | WS_GROUP | WS_TABSTOP
151BEGIN
152    CONTROL "", IDC_DEPEND_TREE1, "SysTreeView32" , WS_BORDER | WS_CHILDWINDOW |
153            WS_VISIBLE | WS_TABSTOP | TVS_HASBUTTONS | TVS_HASLINES |
154            TVS_LINESATROOT | TVS_DISABLEDRAGDROP, 8, 70, 236, 68
155    CONTROL "", IDC_DEPEND_TREE2, "SysTreeView32", WS_BORDER | WS_CHILDWINDOW |
156            WS_VISIBLE | WS_TABSTOP | TVS_HASBUTTONS | TVS_HASLINES |
157            TVS_LINESATROOT | TVS_DISABLEDRAGDROP, 8, 151, 236, 68
158    LTEXT "Some services depend on other services, system drivers and load order groups. If a system component is stopped or it is not running properly, dependant services can be affected.", IDC_STATIC, 8, 7, 238, 26
159    LTEXT "This service depends on the following components", IDC_STATIC, 8, 57, 236, 9
160    LTEXT "", IDC_DEPEND_SERVICE, 8, 38, 236, 13
161END
162
163IDD_DLG_CREATE DIALOGEX 6, 6, 225, 209
164CAPTION "Create a service"
165FONT 8, "MS Shell Dlg", 0, 0
166STYLE DS_SHELLFONT | WS_BORDER | WS_VISIBLE | WS_DLGFRAME | WS_SYSMENU | WS_GROUP | WS_TABSTOP
167BEGIN
168    EDITTEXT IDC_CREATE_SERVNAME, 72, 12, 150, 11, WS_CHILD | WS_VISIBLE | WS_EX_CLIENTEDGE
169    EDITTEXT IDC_CREATE_DISPNAME, 72, 31, 150, 11, WS_CHILD | WS_VISIBLE
170    EDITTEXT IDC_CREATE_PATH, 10, 62, 210, 13, WS_CHILD | WS_VISIBLE
171    EDITTEXT IDC_CREATE_DESC, 10, 97, 210, 48, WS_CHILD | WS_VISIBLE
172    EDITTEXT IDC_CREATE_OPTIONS, 10, 162, 210, 13, WS_CHILD | WS_VISIBLE
173    LTEXT "*Service Name :", IDC_STATIC, 12, 12, 54, 9
174    LTEXT "*Display Name :", IDC_STATIC, 12, 33, 54, 9
175    LTEXT "*Path to executable :", IDC_STATIC, 10, 51, 68, 9
176    LTEXT "Description :", IDC_STATIC, 12, 86, 44, 9
177    PUSHBUTTON "OK", IDOK, 126, 192, 44, 13
178    PUSHBUTTON "Cancel", IDCANCEL, 176, 192, 46, 13
179    LTEXT "Additional Options (Click Help for details)", IDC_STATIC, 10, 151, 134, 9
180    PUSHBUTTON "&Help", ID_CREATE_HELP, 10, 192, 44, 13
181END
182
183IDD_DLG_DELETE DIALOGEX 6, 6, 185, 148
184CAPTION "Delete a service"
185FONT 8, "MS Shell Dlg", 0, 0
186STYLE DS_SHELLFONT | WS_BORDER | WS_DLGFRAME | DS_MODALFRAME
187BEGIN
188    ICON IDI_WARNING, IDC_STATIC, 10, 8, 24, 22
189    LTEXT "Are you sure you want to delete the following service? This cannot be undone once removed!", IDC_STATIC, 50, 6, 125, 25
190    LTEXT "Service Name:", IDC_STATIC, 6, 40, 80, 9
191    LTEXT "", IDC_DEL_NAME, 15, 53, 160, 15
192    EDITTEXT IDC_DEL_DESC, 6, 73, 174, 48, WS_CHILD | WS_VISIBLE | WS_VSCROLL |
193             WS_EX_STATICEDGE | ES_MULTILINE | ES_READONLY
194    PUSHBUTTON "Yes", IDOK, 26, 129, 54, 13
195    DEFPUSHBUTTON "No", IDCANCEL, 102, 129, 54, 13
196END
197
198IDD_DLG_DEPEND_STOP DIALOGEX 6, 6, 240, 148
199CAPTION "Stop Other Services"
200FONT 8, "MS Shell Dlg", 0, 0
201STYLE DS_SHELLFONT | WS_BORDER | WS_DLGFRAME | DS_MODALFRAME
202BEGIN
203    ICON IDI_WARNING, IDC_STATIC, 10, 8, 24, 22
204    LTEXT "", IDC_STOP_DEPENDS, 40, 8, 170, 25
205    LISTBOX IDC_STOP_DEPENDS_LB, 15, 40, 210, 70, WS_CHILD | WS_VISIBLE | WS_EX_STATICEDGE | LBS_NOSEL
206    LTEXT "Do you want to stop these services?", IDC_STATIC, 15, 110, 150, 10
207    DEFPUSHBUTTON "Yes", IDOK, 60, 129, 54, 14
208    PUSHBUTTON "No", IDCANCEL, 120, 129, 54, 14
209END
210
211IDD_DLG_HELP_OPTIONS DIALOGEX 6, 6, 200, 150
212CAPTION "Options"
213FONT 8, "MS Shell Dlg", 0, 0
214STYLE DS_SHELLFONT | WS_BORDER | WS_DLGFRAME | DS_MODALFRAME
215BEGIN
216    LTEXT "", IDC_CREATE_HELP, 6, 5, 200, 150
217    PUSHBUTTON "Ok", IDOK, 75, 130, 44, 13
218END
219
220IDD_DLG_PROGRESS DIALOGEX 6, 6, 255, 89
221CAPTION "Service Control"
222FONT 8, "MS Shell Dlg", 0, 0
223STYLE DS_SHELLFONT | WS_BORDER | WS_DLGFRAME | WS_SYSMENU | WS_VISIBLE | DS_MODALFRAME
224BEGIN
225    CONTROL "", IDC_SERVCON_PROGRESS, "msctls_progress32", 0x50000000, 8, 46, 238, 13
226    LTEXT "", IDC_SERVCON_INFO, 8, 5, 236, 11
227    LTEXT "", IDC_SERVCON_NAME, 8, 25, 66, 11
228    PUSHBUTTON "&Close", IDOK, 100, 70, 54, 13
229END
230
231STRINGTABLE
232BEGIN
233    IDS_FIRSTCOLUMN "Name"
234    IDS_SECONDCOLUMN "Description"
235    IDS_THIRDCOLUMN "Status"
236    IDS_FOURTHCOLUMN "Startup Type"
237    IDS_FITHCOLUMN "Log On As"
238END
239
240STRINGTABLE
241BEGIN
242    IDS_SERVICES_STARTED "Started"
243    IDS_SERVICES_STOPPED "Stopped"
244    IDS_SERVICES_AUTO "Automatic"
245    IDS_SERVICES_MAN "Manual"
246    IDS_SERVICES_DIS "Disabled"
247END
248
249STRINGTABLE
250BEGIN
251    IDS_NUM_SERVICES "Num Services: %d"
252    IDS_STOP_DEPENDS "When %s stops, these other services will also stop"
253    IDS_NO_DEPENDS "<No Dependencies>"
254END
255
256STRINGTABLE
257BEGIN
258    IDS_TOOLTIP_PROP "Properties"
259    IDS_TOOLTIP_REFRESH "Refresh"
260    IDS_TOOLTIP_EXPORT "Export list"
261    IDS_TOOLTIP_CREATE "Create a new service"
262    IDS_TOOLTIP_DELETE "Deletes an existing service"
263    IDS_TOOLTIP_START "Start service"
264    IDS_TOOLTIP_STOP "Stop service"
265    IDS_TOOLTIP_PAUSE "Pause service"
266    IDS_TOOLTIP_RESTART "Restart service"
267END
268
269STRINGTABLE
270BEGIN
271    IDS_PROGRESS_INFO_START "ReactOS is attempting to start the following service"
272    IDS_PROGRESS_INFO_STOP "ReactOS is attempting to stop the following service"
273    IDS_PROGRESS_INFO_PAUSE "ReactOS is attempting to pause the following service"
274    IDS_PROGRESS_INFO_RESUME "ReactOS is attempting to resume the following service"
275    IDS_CREATE_SUCCESS "Service Created Successfully"
276    IDS_DELETE_SUCCESS "Service Deleted Successfully"
277    IDS_CREATE_REQ "Fields marked with an\nasterisk are mandatory"
278    IDS_DELETE_STOP "You must manually stop the service before deleting!"
279END
280
281STRINGTABLE
282BEGIN
283    IDS_HELP_OPTIONS "CREATE OPTIONS:\nNOTE: The option name includes the equal sign.\n type= <own|share|interact|kernel|filesys|rec>\n       (default = own)\n start= <boot|system|auto|demand|disabled>\n       (default = demand)\n error= <normal|severe|critical|ignore>\n       (default = normal)\n group= <LoadOrderGroup>\n tag= <yes|no>\n depend= <Dependencies(separated by / (forward slash))>\n obj= <AccountName|ObjectName>\n       (default = LocalSystem)\n password= <password>\n"
284END
285
286/* Hints */
287STRINGTABLE
288BEGIN
289    IDS_HINT_BLANK " "
290    IDS_HINT_EXPORT " Exports the current list to a file."
291    IDS_HINT_EXIT " Exits the program."
292    IDS_HINT_CONNECT " Manage a different computer."
293    IDS_HINT_START " Start the selected service."
294    IDS_HINT_STOP " Stop the selected service."
295    IDS_HINT_PAUSE " Pause the selected service."
296    IDS_HINT_RESUME " Resume the selected service."
297    IDS_HINT_RESTART " Stop and start the selected service."
298    IDS_HINT_REFRESH " Refresh the service list."
299    IDS_HINT_EDIT " Edit the properties of the selected service."
300    IDS_HINT_CREATE " Create a new service."
301    IDS_HINT_DELETE " Delete the selected service."
302    IDS_HINT_PROP " Open property sheet for the current selection."
303    IDS_HINT_LARGE " Display items by using large icons."
304    IDS_HINT_SMALL " Display items by using small icons."
305    IDS_HINT_LIST " Display item in a list."
306    IDS_HINT_DETAILS " Display information about each item in a window."
307    IDS_HINT_CUST " Customizes the view."
308    IDS_HINT_HELP " Display help window."
309    IDS_HINT_ABOUT " About ReactOS Service Manager."
310    IDS_HINT_SYS_RESTORE " Restores this window to normal size."
311    IDS_HINT_SYS_MOVE " Moves this window."
312    IDS_HINT_SYS_SIZE " Resizes this window."
313    IDS_HINT_SYS_MINIMIZE " Collapses this window to an icon."
314    IDS_HINT_SYS_MAXIMIZE " Expands this window to fill this screen."
315    IDS_HINT_SYS_CLOSE " Closes this window."
316END
317
318/* Application title */
319STRINGTABLE
320BEGIN
321    IDS_APPNAME "ReactOS Service Manager"
322    IDS_APPAUTHORS "Copyright (C) 2005-2007 by Ged Murphy (gedmurphy@reactos.org)"
323END
324
325STRINGTABLE
326BEGIN
327    IDS_NO_ACTION "Take no action"
328    IDS_RESTART_SERVICE "Restart the Service"
329    IDS_RUN_PROGRAM "Run a Program"
330    IDS_RESTART_COMPUTER "Restart the Computer"
331END
332
333STRINGTABLE
334BEGIN
335    IDS_NOT_SAME_PASSWORD "The Passwords are not the same!"
336    IDS_INVALID_PASSWORD "Enter a valid Password!"
337END
338