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#define _SV_MENU_SRC 28 29#include <svids.hrc> 30 31String SV_RESID_STRING_NOSELECTIONPOSSIBLE 32{ 33 Text [ en-US ] = "<No selection possible>"; 34}; 35 36Menu SV_RESID_MENU_EDIT 37{ 38 ItemList = 39 { 40 MenuItem 41 { 42 Identifier = SV_MENU_EDIT_UNDO ; 43 Text [ en-US ] = "~Undo" ; 44 }; 45 MenuItem { Separator = TRUE ; }; 46 MenuItem 47 { 48 Identifier = SV_MENU_EDIT_CUT ; 49 Text [ en-US ] = "Cu~t" ; 50 }; 51 MenuItem 52 { 53 Identifier = SV_MENU_EDIT_COPY ; 54 Text [ en-US ] = "~Copy" ; 55 }; 56 MenuItem 57 { 58 Identifier = SV_MENU_EDIT_PASTE ; 59 Text [ en-US ] = "~Paste" ; 60 }; 61 MenuItem 62 { 63 Identifier = SV_MENU_EDIT_DELETE ; 64 Text [ en-US ] = "~Delete" ; 65 }; 66 MenuItem { Separator = TRUE ; }; 67 MenuItem 68 { 69 Identifier = SV_MENU_EDIT_SELECTALL ; 70 Text [ en-US ] = "Select ~All" ; 71 }; 72 MenuItem { Separator = TRUE ; }; 73 MenuItem 74 { 75 Identifier = SV_MENU_EDIT_INSERTSYMBOL; 76 Text [ en-US ] = "~Special Character..."; 77 78 }; 79 }; 80}; 81 82String SV_MENU_MAC_SERVICES 83{ 84 Text [ en-US ] = "Services"; 85}; 86 87String SV_MENU_MAC_HIDEAPP 88{ 89 Text [ en-US ] = "Hide %PRODUCTNAME"; 90}; 91 92String SV_MENU_MAC_HIDEALL 93{ 94 Text [ en-US ] = "Hide Others"; 95}; 96 97String SV_MENU_MAC_SHOWALL 98{ 99 Text [ en-US ] = "Show All"; 100}; 101 102String SV_MENU_MAC_QUITAPP 103{ 104 Text [ en-US ] = "Quit %PRODUCTNAME"; 105}; 106 107