xref: /trunk/main/desktop/source/deployment/gui/dp_gui_updatedialog.src (revision 6b417ef1a7de1a5d44ffaa9f03cc83b879686183)
1158fda6aSAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
3158fda6aSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
4158fda6aSAndrew Rist * or more contributor license agreements.  See the NOTICE file
5158fda6aSAndrew Rist * distributed with this work for additional information
6158fda6aSAndrew Rist * regarding copyright ownership.  The ASF licenses this file
7158fda6aSAndrew Rist * to you under the Apache License, Version 2.0 (the
8158fda6aSAndrew Rist * "License") ; you may not use this file except in compliance
9158fda6aSAndrew Rist * with the License.  You may obtain a copy of the License at
10cdf0e10cSrcweir *
11158fda6aSAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir *
13158fda6aSAndrew Rist * Unless required by applicable law or agreed to in writing,
14158fda6aSAndrew Rist * software distributed under the License is distributed on an
15158fda6aSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16158fda6aSAndrew Rist * KIND, either express or implied.  See the License for the
17158fda6aSAndrew Rist * specific language governing permissions and limitations
18158fda6aSAndrew Rist * under the License.
19cdf0e10cSrcweir *
20158fda6aSAndrew Rist *************************************************************/
21158fda6aSAndrew Rist
22cdf0e10cSrcweir#include "svtools/controldims.hrc"
23cdf0e10cSrcweir
24cdf0e10cSrcweir#include "dp_gui.hrc"
25cdf0e10cSrcweir
26cdf0e10cSrcweir#define LOCAL_WIDTH (60 * RSC_BS_CHARWIDTH)
27cdf0e10cSrcweir#define LABEL_WIDTH (1 * RSC_BS_CHARWIDTH)
28cdf0e10cSrcweir#define LOCAL_LIST_HEIGHT1 (6 * RSC_BS_CHARHEIGHT) + 4
29cdf0e10cSrcweir#define LOCAL_LIST_HEIGHT2 (7 * RSC_BS_CHARHEIGHT) + 3
30cdf0e10cSrcweir
31*6b417ef1SmseidelModalDialog RID_DLG_UPDATE
32*6b417ef1Smseidel{
33cdf0e10cSrcweir    HelpID = HID_DEPLOYMENT_GUI_UPDATE ;
34*6b417ef1Smseidel    Size = MAP_APPFONT ( RSC_SP_DLG_INNERBORDER_LEFT + LOCAL_WIDTH + RSC_SP_DLG_INNERBORDER_RIGHT,
35*6b417ef1Smseidel        RSC_SP_DLG_INNERBORDER_TOP + RSC_CD_FIXEDTEXT_HEIGHT + RSC_SP_CTRL_DESC_Y + LOCAL_LIST_HEIGHT1 + RSC_SP_CTRL_GROUP_Y +
36*6b417ef1Smseidel        RSC_CD_CHECKBOX_HEIGHT + RSC_SP_CTRL_GROUP_Y + RSC_CD_FIXEDTEXT_HEIGHT + RSC_SP_CTRL_DESC_Y + LOCAL_LIST_HEIGHT2 + RSC_SP_FLGR_SPACE_Y +
37*6b417ef1Smseidel        RSC_CD_FIXEDLINE_HEIGHT + RSC_SP_FLGR_SPACE_Y + RSC_CD_PUSHBUTTON_HEIGHT + RSC_SP_DLG_INNERBORDER_BOTTOM ) ;
38cdf0e10cSrcweir    Text [en-US] = "Extension Update" ;
39cdf0e10cSrcweir    Moveable = TRUE ;
40cdf0e10cSrcweir    Closeable = TRUE ;
41*6b417ef1Smseidel    FixedText RID_DLG_UPDATE_CHECKING
42*6b417ef1Smseidel    {
43*6b417ef1Smseidel        Pos = MAP_APPFONT ( RSC_SP_DLG_INNERBORDER_LEFT + LOCAL_WIDTH * 2 / 3, RSC_SP_DLG_INNERBORDER_TOP ) ;
44*6b417ef1Smseidel        Size = MAP_APPFONT ( LOCAL_WIDTH - LOCAL_WIDTH * 2 / 3 - RSC_SP_CTRL_DESC_X - RSC_CD_FIXEDTEXT_HEIGHT, RSC_CD_FIXEDTEXT_HEIGHT ) ;
45cdf0e10cSrcweir        Text [en-US] = "Checking... " ;
46cdf0e10cSrcweir        Right = TRUE ;
47cdf0e10cSrcweir        NoLabel = TRUE ;
48cdf0e10cSrcweir    };
49*6b417ef1Smseidel    FixedImage RID_DLG_UPDATE_THROBBER
50*6b417ef1Smseidel    {
51*6b417ef1Smseidel        Pos = MAP_APPFONT ( RSC_SP_DLG_INNERBORDER_LEFT + LOCAL_WIDTH - RSC_CD_FIXEDTEXT_HEIGHT, RSC_SP_DLG_INNERBORDER_TOP ) ;
52cdf0e10cSrcweir        Size = MAP_APPFONT ( RSC_CD_FIXEDTEXT_HEIGHT, RSC_CD_FIXEDTEXT_HEIGHT + 1 ) ;
53cdf0e10cSrcweir    };
54*6b417ef1Smseidel    FixedText RID_DLG_UPDATE_UPDATE
55*6b417ef1Smseidel    {
56cdf0e10cSrcweir        Disable = TRUE ;
57*6b417ef1Smseidel        Pos = MAP_APPFONT ( RSC_SP_DLG_INNERBORDER_LEFT, RSC_SP_DLG_INNERBORDER_TOP ) ;
58*6b417ef1Smseidel        Size = MAP_APPFONT ( LOCAL_WIDTH * 2 / 3 - RSC_SP_CTRL_GROUP_X, RSC_CD_FIXEDTEXT_HEIGHT ) ;
59cdf0e10cSrcweir        Text [en-US] = "~Available extension updates" ;
60cdf0e10cSrcweir    };
61*6b417ef1Smseidel    Control RID_DLG_UPDATE_UPDATES
62*6b417ef1Smseidel    {
63cdf0e10cSrcweir        HelpId = HID_DEPLOYMENT_GUI_UPDATE_AVAILABLE_UPDATES ;
64cdf0e10cSrcweir        Disable = TRUE ;
65cdf0e10cSrcweir        Border = TRUE ;
66*6b417ef1Smseidel        Pos = MAP_APPFONT ( RSC_SP_DLG_INNERBORDER_LEFT, RSC_SP_DLG_INNERBORDER_TOP + RSC_CD_FIXEDTEXT_HEIGHT + RSC_SP_CTRL_DESC_Y ) ;
67cdf0e10cSrcweir        Size = MAP_APPFONT ( LOCAL_WIDTH, LOCAL_LIST_HEIGHT1 ) ;
68cdf0e10cSrcweir        TabStop = TRUE ;
69cdf0e10cSrcweir    };
70*6b417ef1Smseidel    CheckBox RID_DLG_UPDATE_ALL
71*6b417ef1Smseidel    {
72cdf0e10cSrcweir        HelpID = "desktop:CheckBox:RID_DLG_UPDATE:RID_DLG_UPDATE_ALL" ;
73cdf0e10cSrcweir        Disable = TRUE ;
74*6b417ef1Smseidel        Pos = MAP_APPFONT ( RSC_SP_DLG_INNERBORDER_LEFT, RSC_SP_DLG_INNERBORDER_TOP + RSC_CD_FIXEDTEXT_HEIGHT + RSC_SP_CTRL_DESC_Y + LOCAL_LIST_HEIGHT1 + RSC_SP_CTRL_GROUP_Y ) ;
75cdf0e10cSrcweir        Size = MAP_APPFONT ( LOCAL_WIDTH, RSC_CD_CHECKBOX_HEIGHT ) ;
76cdf0e10cSrcweir        Text [en-US] = "~Show all updates" ;
77cdf0e10cSrcweir    };
78*6b417ef1Smseidel    FixedLine RID_DLG_UPDATE_DESCRIPTION
79*6b417ef1Smseidel    {
80cdf0e10cSrcweir        Disable = TRUE ;
81*6b417ef1Smseidel        Pos = MAP_APPFONT ( RSC_SP_DLG_INNERBORDER_LEFT,
82*6b417ef1Smseidel            RSC_SP_DLG_INNERBORDER_TOP + RSC_CD_FIXEDTEXT_HEIGHT + RSC_SP_CTRL_DESC_Y + LOCAL_LIST_HEIGHT1 + RSC_SP_CTRL_GROUP_Y + RSC_CD_CHECKBOX_HEIGHT + RSC_SP_CTRL_GROUP_Y ) ;
83cdf0e10cSrcweir        Size = MAP_APPFONT ( LOCAL_WIDTH, RSC_CD_FIXEDTEXT_HEIGHT ) ;
84cdf0e10cSrcweir        Text [en-US] = "Description" ;
85cdf0e10cSrcweir    };
86cdf0e10cSrcweir    FixedText RID_DLG_UPDATE_PUBLISHER_LABEL
87cdf0e10cSrcweir    {
88*6b417ef1Smseidel        Pos = MAP_APPFONT ( RSC_SP_DLG_INNERBORDER_LEFT,
89*6b417ef1Smseidel            RSC_SP_DLG_INNERBORDER_TOP + RSC_CD_FIXEDTEXT_HEIGHT + RSC_SP_CTRL_DESC_Y + LOCAL_LIST_HEIGHT1 + RSC_SP_CTRL_GROUP_Y +
90*6b417ef1Smseidel            RSC_CD_CHECKBOX_HEIGHT + RSC_SP_CTRL_GROUP_Y + RSC_CD_FIXEDTEXT_HEIGHT + RSC_SP_CTRL_DESC_Y ) ;
91cdf0e10cSrcweir        Size = MAP_APPFONT ( LABEL_WIDTH, RSC_CD_FIXEDTEXT_HEIGHT ) ;
92cdf0e10cSrcweir        Text [en-US] = "Publisher:" ;
93cdf0e10cSrcweir    };
94cdf0e10cSrcweir    FixedText RID_DLG_UPDATE_PUBLISHER_LINK
95cdf0e10cSrcweir    {
96cdf0e10cSrcweir        HelpId = HID_DEPLOYMENT_GUI_UPDATE_PUBLISHER ;
97*6b417ef1Smseidel        Pos = MAP_APPFONT ( RSC_SP_DLG_INNERBORDER_LEFT + LABEL_WIDTH + RSC_SP_CTRL_DESC_X,
98*6b417ef1Smseidel            RSC_SP_DLG_INNERBORDER_TOP + RSC_CD_FIXEDTEXT_HEIGHT + RSC_SP_CTRL_DESC_Y + LOCAL_LIST_HEIGHT1 + RSC_SP_CTRL_GROUP_Y +
99*6b417ef1Smseidel            RSC_CD_CHECKBOX_HEIGHT + RSC_SP_CTRL_GROUP_Y + RSC_CD_FIXEDTEXT_HEIGHT + RSC_SP_CTRL_DESC_Y ) ;
100cdf0e10cSrcweir        Size = MAP_APPFONT ( LOCAL_WIDTH - LABEL_WIDTH - RSC_SP_CTRL_DESC_X, RSC_CD_FIXEDTEXT_HEIGHT ) ;
101cdf0e10cSrcweir    };
102cdf0e10cSrcweir    FixedText RID_DLG_UPDATE_RELEASENOTES_LABEL
103cdf0e10cSrcweir    {
104*6b417ef1Smseidel        Pos = MAP_APPFONT ( RSC_SP_DLG_INNERBORDER_LEFT,
105*6b417ef1Smseidel            RSC_SP_DLG_INNERBORDER_TOP + RSC_CD_FIXEDTEXT_HEIGHT + RSC_SP_CTRL_DESC_Y + LOCAL_LIST_HEIGHT1 + RSC_SP_CTRL_GROUP_Y +
106*6b417ef1Smseidel            RSC_CD_CHECKBOX_HEIGHT + RSC_SP_CTRL_GROUP_Y + RSC_CD_FIXEDTEXT_HEIGHT + RSC_SP_CTRL_DESC_Y + RSC_CD_FIXEDTEXT_HEIGHT + RSC_SP_CTRL_DESC_Y ) ;
107cdf0e10cSrcweir        Size = MAP_APPFONT ( LABEL_WIDTH, RSC_CD_FIXEDTEXT_HEIGHT ) ;
108cdf0e10cSrcweir        Text [en-US] = "What is new:" ;
109cdf0e10cSrcweir    };
110cdf0e10cSrcweir    FixedText RID_DLG_UPDATE_RELEASENOTES_LINK
111cdf0e10cSrcweir    {
112cdf0e10cSrcweir        HelpId = HID_DEPLOYMENT_GUI_UPDATE_RELEASENOTES ;
113*6b417ef1Smseidel        Pos = MAP_APPFONT ( RSC_SP_DLG_INNERBORDER_LEFT + LABEL_WIDTH + RSC_SP_CTRL_DESC_X,
114*6b417ef1Smseidel            RSC_SP_DLG_INNERBORDER_TOP + RSC_CD_FIXEDTEXT_HEIGHT + RSC_SP_CTRL_DESC_Y + LOCAL_LIST_HEIGHT1 + RSC_SP_CTRL_GROUP_Y +
115*6b417ef1Smseidel            RSC_CD_CHECKBOX_HEIGHT + RSC_SP_CTRL_GROUP_Y + RSC_CD_FIXEDTEXT_HEIGHT + RSC_SP_CTRL_DESC_Y + RSC_CD_FIXEDTEXT_HEIGHT + RSC_SP_CTRL_DESC_Y ) ;
116cdf0e10cSrcweir        Size = MAP_APPFONT (LOCAL_WIDTH - LABEL_WIDTH - RSC_SP_CTRL_DESC_X, RSC_CD_FIXEDTEXT_HEIGHT) ;
117cdf0e10cSrcweir        Text [en-US] = "Release Notes" ;
118cdf0e10cSrcweir    };
119*6b417ef1Smseidel    MultiLineEdit RID_DLG_UPDATE_DESCRIPTIONS
120*6b417ef1Smseidel    {
121cdf0e10cSrcweir        HelpID = "desktop:MultiLineEdit:RID_DLG_UPDATE:RID_DLG_UPDATE_DESCRIPTIONS" ;
122cdf0e10cSrcweir        Disable = TRUE ;
123cdf0e10cSrcweir        Border = TRUE ;
124*6b417ef1Smseidel        Pos = MAP_APPFONT ( RSC_SP_DLG_INNERBORDER_LEFT,
125*6b417ef1Smseidel            RSC_SP_DLG_INNERBORDER_TOP + RSC_CD_FIXEDTEXT_HEIGHT + RSC_SP_CTRL_DESC_Y + LOCAL_LIST_HEIGHT1 + RSC_SP_CTRL_GROUP_Y +
126*6b417ef1Smseidel            RSC_CD_CHECKBOX_HEIGHT + RSC_SP_CTRL_GROUP_Y + RSC_CD_FIXEDTEXT_HEIGHT + RSC_SP_CTRL_DESC_Y ) ;
127cdf0e10cSrcweir        Size = MAP_APPFONT ( LOCAL_WIDTH, LOCAL_LIST_HEIGHT2 ) ;
128cdf0e10cSrcweir        ReadOnly = TRUE ;
129cdf0e10cSrcweir        VScroll = TRUE ;
130cdf0e10cSrcweir        IgnoreTab = TRUE ;
131cdf0e10cSrcweir    };
132*6b417ef1Smseidel    FixedLine RID_DLG_UPDATE_LINE
133*6b417ef1Smseidel    {
134*6b417ef1Smseidel        Pos = MAP_APPFONT ( RSC_SP_DLG_INNERBORDER_LEFT,
135*6b417ef1Smseidel            RSC_SP_DLG_INNERBORDER_TOP + RSC_CD_FIXEDTEXT_HEIGHT + RSC_SP_CTRL_DESC_Y + LOCAL_LIST_HEIGHT1 + RSC_SP_CTRL_GROUP_Y +
136*6b417ef1Smseidel            RSC_CD_CHECKBOX_HEIGHT + RSC_SP_CTRL_GROUP_Y + RSC_CD_FIXEDTEXT_HEIGHT + RSC_SP_CTRL_DESC_Y + LOCAL_LIST_HEIGHT2 + RSC_SP_FLGR_SPACE_Y ) ;
137cdf0e10cSrcweir        Size = MAP_APPFONT ( LOCAL_WIDTH, RSC_CD_FIXEDLINE_HEIGHT ) ;
138cdf0e10cSrcweir    };
139*6b417ef1Smseidel    HelpButton RID_DLG_UPDATE_HELP
140*6b417ef1Smseidel    {
141*6b417ef1Smseidel        Pos = MAP_APPFONT ( RSC_SP_DLG_INNERBORDER_LEFT,
142*6b417ef1Smseidel            RSC_SP_DLG_INNERBORDER_TOP + RSC_CD_FIXEDTEXT_HEIGHT + RSC_SP_CTRL_DESC_Y + LOCAL_LIST_HEIGHT1 + RSC_SP_CTRL_GROUP_Y +
143*6b417ef1Smseidel            RSC_CD_CHECKBOX_HEIGHT + RSC_SP_CTRL_GROUP_Y + RSC_CD_FIXEDTEXT_HEIGHT + RSC_SP_CTRL_DESC_Y + LOCAL_LIST_HEIGHT2 + RSC_SP_FLGR_SPACE_Y + RSC_CD_FIXEDLINE_HEIGHT + RSC_SP_FLGR_SPACE_Y ) ;
144cdf0e10cSrcweir        Size = MAP_APPFONT ( RSC_CD_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT ) ;
145cdf0e10cSrcweir    };
146*6b417ef1Smseidel    PushButton RID_DLG_UPDATE_OK
147*6b417ef1Smseidel    {
148cdf0e10cSrcweir        HelpID = "desktop:PushButton:RID_DLG_UPDATE:RID_DLG_UPDATE_OK" ;
149cdf0e10cSrcweir        Disable = TRUE ;
150*6b417ef1Smseidel        Pos = MAP_APPFONT ( RSC_SP_DLG_INNERBORDER_LEFT + LOCAL_WIDTH - RSC_CD_PUSHBUTTON_WIDTH - RSC_SP_CTRL_GROUP_X - RSC_CD_PUSHBUTTON_WIDTH,
151*6b417ef1Smseidel            RSC_SP_DLG_INNERBORDER_TOP + RSC_CD_FIXEDTEXT_HEIGHT + RSC_SP_CTRL_DESC_Y + LOCAL_LIST_HEIGHT1 + RSC_SP_CTRL_GROUP_Y +RSC_CD_CHECKBOX_HEIGHT + RSC_SP_CTRL_GROUP_Y + RSC_CD_FIXEDTEXT_HEIGHT +
152*6b417ef1Smseidel            RSC_SP_CTRL_DESC_Y + LOCAL_LIST_HEIGHT2 + RSC_SP_FLGR_SPACE_Y + RSC_CD_FIXEDLINE_HEIGHT + RSC_SP_FLGR_SPACE_Y ) ;
153cdf0e10cSrcweir        Size = MAP_APPFONT ( RSC_CD_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT ) ;
154cdf0e10cSrcweir        Text [en-US] = "~Install" ;
155cdf0e10cSrcweir        DefButton = TRUE ;
156cdf0e10cSrcweir    };
157*6b417ef1Smseidel    PushButton RID_DLG_UPDATE_CLOSE
158*6b417ef1Smseidel    {
159*6b417ef1Smseidel        Pos = MAP_APPFONT ( RSC_SP_DLG_INNERBORDER_LEFT + LOCAL_WIDTH - RSC_CD_PUSHBUTTON_WIDTH,
160*6b417ef1Smseidel            RSC_SP_DLG_INNERBORDER_TOP + RSC_CD_FIXEDTEXT_HEIGHT + RSC_SP_CTRL_DESC_Y + LOCAL_LIST_HEIGHT1 + RSC_SP_CTRL_GROUP_Y +RSC_CD_CHECKBOX_HEIGHT + RSC_SP_CTRL_GROUP_Y + RSC_CD_FIXEDTEXT_HEIGHT +
161*6b417ef1Smseidel            RSC_SP_CTRL_DESC_Y + LOCAL_LIST_HEIGHT2 + RSC_SP_FLGR_SPACE_Y + RSC_CD_FIXEDLINE_HEIGHT + RSC_SP_FLGR_SPACE_Y ) ;
162cdf0e10cSrcweir        Size = MAP_APPFONT ( RSC_CD_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT ) ;
163cdf0e10cSrcweir        Text [en-US] = "Close" ;
164cdf0e10cSrcweir    };
165cdf0e10cSrcweir    Image RID_DLG_UPDATE_NORMALALERT {
166cdf0e10cSrcweir        ImageBitmap = Bitmap {
167cdf0e10cSrcweir            File = "caution_12.png" ;
168cdf0e10cSrcweir        };
169cdf0e10cSrcweir    };
170cdf0e10cSrcweir    Image RID_DLG_UPDATE_HIGHCONTRASTALERT {
171cdf0e10cSrcweir        ImageBitmap = Bitmap {
172cdf0e10cSrcweir            File = "caution_12_h.png" ;
173cdf0e10cSrcweir        };
174cdf0e10cSrcweir    };
175cdf0e10cSrcweir    String RID_DLG_UPDATE_ERROR {
176cdf0e10cSrcweir        Text [en-US] = "Error" ;
177cdf0e10cSrcweir    };
178cdf0e10cSrcweir    String RID_DLG_UPDATE_NONE {
179cdf0e10cSrcweir        Text [en-US] = "No new updates are available." ;
180cdf0e10cSrcweir    };
181cdf0e10cSrcweir    String RID_DLG_UPDATE_NOINSTALLABLE {
182cdf0e10cSrcweir        Text [en-US] = "No installable updates are available. To see ignored or disabled updates, mark the check box 'Show all updates'." ;
183cdf0e10cSrcweir    };
184cdf0e10cSrcweir    String RID_DLG_UPDATE_FAILURE {
185cdf0e10cSrcweir        Text [en-US] = "An error occurred:" ;
186cdf0e10cSrcweir    };
187cdf0e10cSrcweir    String RID_DLG_UPDATE_UNKNOWNERROR {
188cdf0e10cSrcweir        Text [en-US] = "Unknown error." ;
189cdf0e10cSrcweir    };
190cdf0e10cSrcweir    String RID_DLG_UPDATE_NODESCRIPTION {
191cdf0e10cSrcweir        Text [en-US] = "No more details are available for this update." ;
192cdf0e10cSrcweir    };
193cdf0e10cSrcweir    String RID_DLG_UPDATE_NOINSTALL {
194cdf0e10cSrcweir        Text [en-US] = "The extension cannot be updated because:" ;
195cdf0e10cSrcweir    };
196cdf0e10cSrcweir    String RID_DLG_UPDATE_NODEPENDENCY {
1978951e390SHerbert Dürr        Text [en-US] = "Required Apache OpenOffice version doesn't match:" ;
198cdf0e10cSrcweir    };
199cdf0e10cSrcweir    String RID_DLG_UPDATE_NODEPENDENCY_CUR_VER {
2008951e390SHerbert Dürr        Text [en-US] = "You have Apache OpenOffice %VERSION" ;
201cdf0e10cSrcweir    };
202cdf0e10cSrcweir    String RID_DLG_UPDATE_BROWSERBASED {
203cdf0e10cSrcweir        Text [en-US] = "browser based update" ;
204cdf0e10cSrcweir    };
205cdf0e10cSrcweir    String RID_DLG_UPDATE_VERSION {
206cdf0e10cSrcweir        Text [en-US] = "Version" ;
207cdf0e10cSrcweir    };
208cdf0e10cSrcweir    String RID_DLG_UPDATE_IGNORE {
209cdf0e10cSrcweir        Text [en-US] = "Ignore this Update" ;
210cdf0e10cSrcweir    };
211cdf0e10cSrcweir    String RID_DLG_UPDATE_IGNORE_ALL {
212cdf0e10cSrcweir        Text [en-US] = "Ignore all Updates" ;
213cdf0e10cSrcweir    };
214cdf0e10cSrcweir    String RID_DLG_UPDATE_ENABLE {
215cdf0e10cSrcweir        Text [en-US] = "Enable Updates" ;
216cdf0e10cSrcweir    };
217cdf0e10cSrcweir    String RID_DLG_UPDATE_IGNORED_UPDATE {
218cdf0e10cSrcweir        Text [en-US] = "This update will be ignored.\n" ;
219cdf0e10cSrcweir    };
220cdf0e10cSrcweir};
221cdf0e10cSrcweir
222cdf0e10cSrcweirWarningBox RID_WARNINGBOX_UPDATE_SHARED_EXTENSION
223cdf0e10cSrcweir{
224cdf0e10cSrcweir    Buttons = WB_OK_CANCEL ;
225cdf0e10cSrcweir    DefButton = WB_DEF_CANCEL ;
226cdf0e10cSrcweir    Message [en-US] = "Make sure that no further users are working with the same "
227cdf0e10cSrcweir    "%PRODUCTNAME, when changing shared extensions in a multi user environment.\n"
228cdf0e10cSrcweir    "Click \'OK\' to update the extensions.\n"
229cdf0e10cSrcweir    "Click \'Cancel\' to stop updating the extensions." ;
230cdf0e10cSrcweir};
231cdf0e10cSrcweir
2329ba326f2Smseidel// ******************************************************************* EOF
233