1/************************************************************************* 2 * 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 * 5 * Copyright 2000, 2010 Oracle and/or its affiliates. 6 * 7 * OpenOffice.org - a multi-platform office productivity suite 8 * 9 * This file is part of OpenOffice.org. 10 * 11 * OpenOffice.org is free software: you can redistribute it and/or modify 12 * it under the terms of the GNU Lesser General Public License version 3 13 * only, as published by the Free Software Foundation. 14 * 15 * OpenOffice.org is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU Lesser General Public License version 3 for more details 19 * (a copy is included in the LICENSE file that accompanied this code). 20 * 21 * You should have received a copy of the GNU Lesser General Public License 22 * version 3 along with OpenOffice.org. If not, see 23 * <http://www.openoffice.org/license.html> 24 * for a copy of the LGPLv3 License. 25 * 26 ************************************************************************/ 27 28#include "dp_gui.hrc" 29 30WarningBox RID_WARNINGBOX_VERSION_LESS { 31 Buttons = WB_OK_CANCEL; 32 DefButton = WB_DEF_CANCEL; 33 Message[en-US] = "You are about to install version $NEW of the extension \'$NAME\'.\n" 34 "The newer version $DEPLOYED is already installed.\n" 35 "Click \'OK\' to replace the installed extension.\n" 36 "Click \'Cancel\' to stop the installation."; 37}; 38 39String RID_STR_WARNINGBOX_VERSION_LESS_DIFFERENT_NAMES { 40 Text [en-US] = "You are about to install version $NEW of the extension \'$NAME\'.\n" 41 "The newer version $DEPLOYED, named \'$OLDNAME\', is already installed.\n" 42 "Click \'OK\' to replace the installed extension.\n" 43 "Click \'Cancel\' to stop the installation."; 44}; 45 46WarningBox RID_WARNINGBOX_VERSION_EQUAL { 47 Buttons = WB_OK_CANCEL; 48 DefButton = WB_DEF_CANCEL; 49 Message[en-US] = "You are about to install version $NEW of the extension \'$NAME\'.\n" 50 "That version is already installed.\n" 51 "Click \'OK\' to replace the installed extension.\n" 52 "Click \'Cancel\' to stop the installation."; 53}; 54 55String RID_STR_WARNINGBOX_VERSION_EQUAL_DIFFERENT_NAMES { 56 Text [en-US] = "You are about to install version $NEW of the extension \'$NAME\'.\n" 57 "That version, named \'$OLDNAME\', is already installed.\n" 58 "Click \'OK\' to replace the installed extension.\n" 59 "Click \'Cancel\' to stop the installation."; 60}; 61 62WarningBox RID_WARNINGBOX_VERSION_GREATER { 63 Buttons = WB_OK_CANCEL; 64 DefButton = WB_DEF_OK; 65 Message[en-US] = "You are about to install version $NEW of the extension \'$NAME\'.\n" 66 "The older version $DEPLOYED is already installed.\n" 67 "Click \'OK\' to replace the installed extension.\n" 68 "Click \'Cancel\' to stop the installation."; 69}; 70 71String RID_STR_WARNINGBOX_VERSION_GREATER_DIFFERENT_NAMES { 72 TEXT [en-US] = "You are about to install version $NEW of the extension \'$NAME\'.\n" 73 "The older version $DEPLOYED, named \'$OLDNAME\', is already installed.\n" 74 "Click \'OK\' to replace the installed extension.\n" 75 "Click \'Cancel\' to stop the installation."; 76};