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