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