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 --------------------------------------------------------------- 29#include <sfx2/sfx.hrc> 30#include "dialog.hrc" 31#include "helpid.hrc" 32#include "sfxlocal.hrc" 33 34String STR_RESET 35{ 36 Text [ en-US ] = "~Reset" ; 37}; 38String STR_APPLY 39{ 40 Text [ en-US ] = "Apply"; 41}; 42String STR_TABPAGE_MANAGESTYLES 43{ 44 Text [ en-US ] = "Organizer" ; 45}; 46InfoBox MSG_TABPAGE_INVALIDNAME 47{ 48 BUTTONS = WB_OK ; 49 DEFBUTTON = WB_DEF_OK ; 50 Message [ en-US ] = "This name is already in use." ; 51}; 52InfoBox MSG_TABPAGE_INVALIDSTYLE 53{ 54 BUTTONS = WB_OK ; 55 DEFBUTTON = WB_DEF_OK ; 56 Message [ en-US ] = "This Style does not exist." ; 57}; 58InfoBox MSG_TABPAGE_INVALIDPARENT 59{ 60 BUTTONS = WB_OK ; 61 DEFBUTTON = WB_DEF_OK ; 62 Message [ en-US ] = "This Style cannot be used as a base Style,\nbecause it would result in a recursive reference." ; 63}; 64InfoBox MSG_POOL_STYLE_NAME 65{ 66 Message [ en-US ] = "Name already exists as a default Style.\nPlease choose another name." ; 67}; 68String STR_DELETE_STYLE 69{ 70 Text [ en-US ] = "Do you really want to delete Style $1?" ; 71}; 72String STR_DELETE_STYLE_USED 73{ 74 Text [ en-US ] = "You are deleting an applied Style!\n" ; 75}; 76Menu MN_CONTEXT_TEMPLDLG 77{ 78 ItemList = 79 { 80 MenuItem 81 { 82 Identifier = ID_NEW ; 83 Text [ en-US ] = "New..." ; 84 HelpId = HID_STYLIST_NEW ; 85 }; 86 MenuItem 87 { 88 Identifier = ID_EDIT ; 89 Text [ en-US ] = "Modify..." ; 90 HelpId = HID_STYLIST_EDIT ; 91 }; 92 MenuItem 93 { 94 Identifier = ID_DELETE ; 95 Text [ en-US ] = "Delete..." ; 96 HelpId = HID_STYLIST_DELETE ; 97 }; 98 }; 99}; 100 101 //------------------------------------------------------------------------ 102String SID_NAVIGATOR 103{ 104 Text [ en-US ] = "Navigator"; 105}; 106String SID_TASKPANE 107{ 108 Text [ en-US ] = "Task Pane"; 109}; 110 111ErrorBox MSG_ERROR_WRONG_CONFIRM 112{ 113 BUTTONS = WB_OK ; 114 DEFBUTTON = WB_DEF_OK ; 115 Message [ en-US ] = "Faulty password confirmation"; 116}; 117 118String STR_PDF_EXPORT_SEND 119{ 120 Text [ en-US ] = "Send" ; 121}; 122 123Image IMG_INFO 124{ 125 ImageBitmap = Bitmap 126 { 127 File = "info.png" ; 128 }; 129}; 130 131// ******************************************************************* EOF 132 133