implement list refreshing and program exit
[reactos.git] / reactos / subsys / system / servman / En.rc
1
2 IDR_MAINMENU MENU
3 BEGIN
4 POPUP "&File"
5 BEGIN
6 MENUITEM "E&xit",ID_EXIT
7 END
8 POPUP "Action"
9 BEGIN
10 MENUITEM "Start",ID_START
11 MENUITEM "Stop",ID_STOP
12 MENUITEM "Pause",ID_PAUSE
13 MENUITEM "Resume",ID_RESUME
14 MENUITEM "Restart",ID_RESTART
15 MENUITEM SEPARATOR
16 MENUITEM "Refresh",ID_REFRESH
17 MENUITEM SEPARATOR
18 MENUITEM "Properties",ID_PROP
19 END
20 POPUP "View"
21 BEGIN
22 MENUITEM "Customize",ID_VIEW_CUSTOMIZE
23 END
24 POPUP "Help"
25 BEGIN
26 MENUITEM "About",ID_HELP_ABOUT
27 END
28 END
29
30 IDD_ABOUTBOX DIALOG DISCARDABLE 22,16,190,182
31 STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
32 CAPTION "About Service Manager"
33 FONT 8, "Tahoma"
34 BEGIN
35 CONTROL "Service Manager v0.1\nCopyright (C) 2006\nby Ged Murphy (gedmurphy@gmail.com)",
36 IDC_STATIC,"Static",SS_LEFTNOWORDWRAP | WS_GROUP,48,7,130,26
37 DEFPUSHBUTTON "Close",IDOK,140,162,44,15,WS_GROUP
38 ICON IDI_SM_ICON,IDC_STATIC,12,7,30,20
39 EDITTEXT IDC_LICENSE_EDIT,8,44,174,107,ES_MULTILINE |
40 ES_READONLY | WS_VSCROLL
41 END
42
43
44 IDD_DLG_GENERAL DIALOGEX 6,6,253,225
45 CAPTION "General"
46 FONT 8,"MS Sans Serif",0,0
47 STYLE 0x10CF0000
48 BEGIN
49 CONTROL "Service name:",IDC_STATIC,"Static",0x50000000,4,11,53,11
50 CONTROL "Display name:",IDC_STATIC,"Static",0x50000000,4,29,53,11
51 CONTROL "Description",IDC_STATIC,"Static",0x50000000,4,51,53,11
52 CONTROL "",IDC_SERV_NAME,"Static",0x50000000,70,11,176,11
53 CONTROL "",IDC_DISP_NAME,"Static",0x50001000,70,29,176,12
54 CONTROL "",IDC_DESCRIPTION,"Static",0x50201000,70,46,176,22
55 CONTROL "Path to executable:",IDC_STATIC,"Static",0x50000000,6,73,82,9
56 CONTROL "",IDC_STATIC,"Static",0x50001000,6,86,238,12
57 CONTROL "Startup type:",IDC_STATIC,"Static",0x50000000,6,108,53,11
58 CONTROL "",IDC_START_TYPE,"ComboBox",0x50010003,70,107,176,11
59 CONTROL "Service status:",IDC_STATIC,"Static",0x50000000,4,138,53,11
60 CONTROL "",IDC_SERV_STATUS,"Static",0x50000000,70,138,176,11
61 CONTROL "Start",IDC_START,"Button",0x50010000,6,155,54,15
62 CONTROL "Stop",IDC_STOP,"Button",0x50010000,68,155,54,15
63 CONTROL "Pause",IDC_PAUSE,"Button",0x50010000,130,155,54,15
64 CONTROL "Resume",IDC_RESUME,"Button",0x50010000,192,155,54,15
65 CONTROL "You can specify the start parameters that apply when you start the service from here.",IDC_STATIC,"Static",0x50000000,6,177,240,15
66 CONTROL "Start parameters",IDC_STATIC,"Static",0x50000000,6,199,53,11
67 CONTROL "",IDC_START_PARAM,"Static",0x50001000,70,199,176,11
68 END
69
70 IDB_BUTTONS BITMAP "res/toolbar.bmp"
71
72 STRINGTABLE DISCARDABLE
73 BEGIN
74 IDS_FIRSTCOLUMN "Name"
75 IDS_SECONDCOLUMN "Description"
76 IDS_THIRDCOLUMN "Status"
77 IDS_FOURTHCOLUMN "Startup Type"
78 IDS_FITHCOLUMN "Log On As"
79 END
80
81 STRINGTABLE DISCARDABLE
82 BEGIN
83 IDS_SERVICES_STATUS_RUNNING "Started"
84 IDS_SERVICES_STATUS_STOPPED "Stopped"
85 IDS_SERVICES_YES "Yes"
86 IDS_SERVICES_UNKNOWN "Unknown"
87 IDS_SERVICES_AUTO "Automatic"
88 IDS_SERVICES_MAN "Manual"
89 IDS_SERVICES_DIS "Disabled"
90 END
91
92 STRINGTABLE DISCARDABLE
93 BEGIN
94 IDS_SERVICES_NUM_SERVICES "Num Services: %d"
95
96 IDS_LICENSE "This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.\r\n\r\nThis program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\r\n\r\nYou should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
97 /*"This program is free software; you can redistribute it "
98 "and/or modify it under the terms of the GNU Lesser General "
99 "Public License as published by the Free Software Foundation; "
100 "either version 2.1 of the License, or (at your option) any "
101 "later version.\r\n\r\nThis program is distributed in the hope "
102 "that it will be useful, but WITHOUT ANY WARRANTY; without even "
103 "the implied warranty of MERCHANTABILITY or FITNESS FOR A "
104 "PARTICULAR PURPOSE. See the GNU General Public License for more "
105 "details.\r\n\r\nYou should have received a copy of the GNU "
106 "General Public License along with this program; if not, write "
107 "to the Free Software Foundation, Inc., 59 Temple Place - Suite "
108 "330, Boston, MA 02111-1307, USA." */
109
110 END
111
112 STRINGTABLE DISCARDABLE
113 BEGIN
114 IDS_TOOLTIP_PROP "Properties"
115 IDS_TOOLTIP_REFRESH "Refresh"
116 IDS_TOOLTIP_EXPORT "Export list"
117 IDS_TOOLTIP_START "Start service"
118 IDS_TOOLTIP_STOP "Stop service"
119 IDS_TOOLTIP_PAUSE "Pause service"
120 IDS_TOOLTIP_RESTART "Restart service"
121 IDS_TOOLTIP_NEW "Create a service"
122 IDS_TOOLTIP_HELP "Help"
123 IDS_TOOLTIP_EXIT "Exit"
124 END