1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements.  See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership.  The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License.  You may obtain a copy of the License at
10 *
11 *   http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied.  See the License for the
17 * specific language governing permissions and limitations
18 * under the License.
19 *
20 *************************************************************/
21
22
23
24#include "dp_gui.hrc"
25
26WarningBox RID_WARNINGBOX_VERSION_LESS {
27    Buttons = WB_OK_CANCEL;
28    DefButton = WB_DEF_CANCEL;
29    Message[en-US] = "You are about to install version $NEW of the extension \'$NAME\'.\n"
30    "The newer version $DEPLOYED is already installed.\n"
31    "Click \'OK\' to replace the installed extension.\n"
32    "Click \'Cancel\' to stop the installation.";
33};
34
35String RID_STR_WARNINGBOX_VERSION_LESS_DIFFERENT_NAMES {
36    Text [en-US] = "You are about to install version $NEW of the extension \'$NAME\'.\n"
37    "The newer version $DEPLOYED, named \'$OLDNAME\', is already installed.\n"
38    "Click \'OK\' to replace the installed extension.\n"
39    "Click \'Cancel\' to stop the installation.";
40};
41
42WarningBox RID_WARNINGBOX_VERSION_EQUAL {
43    Buttons = WB_OK_CANCEL;
44    DefButton = WB_DEF_CANCEL;
45    Message[en-US] = "You are about to install version $NEW of the extension \'$NAME\'.\n"
46    "That version is already installed.\n"
47    "Click \'OK\' to replace the installed extension.\n"
48    "Click \'Cancel\' to stop the installation.";
49};
50
51String RID_STR_WARNINGBOX_VERSION_EQUAL_DIFFERENT_NAMES {
52    Text [en-US] = "You are about to install version $NEW of the extension \'$NAME\'.\n"
53    "That version, named \'$OLDNAME\', is already installed.\n"
54    "Click \'OK\' to replace the installed extension.\n"
55    "Click \'Cancel\' to stop the installation.";
56};
57
58WarningBox RID_WARNINGBOX_VERSION_GREATER {
59    Buttons = WB_OK_CANCEL;
60    DefButton = WB_DEF_OK;
61    Message[en-US] = "You are about to install version $NEW of the extension \'$NAME\'.\n"
62    "The older version $DEPLOYED is already installed.\n"
63    "Click \'OK\' to replace the installed extension.\n"
64    "Click \'Cancel\' to stop the installation.";
65};
66
67String RID_STR_WARNINGBOX_VERSION_GREATER_DIFFERENT_NAMES {
68    TEXT [en-US] = "You are about to install version $NEW of the extension \'$NAME\'.\n"
69    "The older version $DEPLOYED, named \'$OLDNAME\', is already installed.\n"
70    "Click \'OK\' to replace the installed extension.\n"
71    "Click \'Cancel\' to stop the installation.";
72};