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#include <unotools.hrc> 28#include <utlui.hrc> 29#include <globals.hrc> 30#include <helpid.h> 31 32ModalDialog DLG_RENAME_XNAMED 33{ 34 HelpID = HID_RENAME_XNAMED ; 35 OutputSize = TRUE ; 36 SVLook = TRUE ; 37 Size = MAP_APPFONT ( 220 , 60 ) ; 38 Moveable = TRUE ; 39 FixedText FT_NEW_NAME 40 { 41 Pos = MAP_APPFONT ( 12 , 15 ) ; 42 Size = MAP_APPFONT ( 50 , 10 ) ; 43 Text [ en-US ] = "New name"; 44 }; 45 Edit ED_NEW_NAME 46 { 47 HelpID = "sw:Edit:DLG_RENAME_XNAMED:ED_NEW_NAME"; 48 Pos = MAP_APPFONT ( 65 , 13 ) ; 49 Size = MAP_APPFONT ( 87 , 12 ) ; 50 Border = TRUE; 51 }; 52 FixedLine FL_NAME 53 { 54 Pos = MAP_APPFONT ( 6 , 3 ) ; 55 Size = MAP_APPFONT ( 152 , 8 ) ; 56 Text [ en-US ] = "Change name"; 57 }; 58 OKButton PB_OK 59 { 60 Pos = MAP_APPFONT ( 164 , 6 ) ; 61 Size = MAP_APPFONT ( 50 , 14 ) ; 62 TabStop = TRUE ; 63 Group = TRUE ; 64 DefButton = TRUE ; 65 }; 66 CancelButton PB_CANCEL 67 { 68 Pos = MAP_APPFONT ( 164 , 23 ) ; 69 Size = MAP_APPFONT ( 50 , 14 ) ; 70 TabStop = TRUE ; 71 Group = TRUE ; 72 }; 73 HelpButton PB_HELP 74 { 75 Pos = MAP_APPFONT ( 164 , 43 ) ; 76 Size = MAP_APPFONT ( 50 , 14 ) ; 77 TabStop = TRUE ; 78 Group = TRUE ; 79 }; 80 Text [ en-US ] = "Rename object: "; 81}; 82String STR_SERVICE_UNAVAILABLE 83{ 84 Text [ en-US ] = "The following service is not available: "; 85}; 86Resource RES_FRMEX_MENU 87{ 88 StringArray 1 89 { 90 ItemList [ en-US ] = 91 { 92 < "~Zoom" ; ST_MENU_ZOOM; > ; 93 < "~Upwards" ; ST_MENU_UP; > ; 94 < "Do~wnwards" ; ST_MENU_DOWN; > ; 95 }; 96 }; 97}; 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132