xref: /AOO42X/main/vcl/source/src/menu.src (revision 4b821e6c78f56c88001362fd58a927258ea35536)
17bbdf254SAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
37bbdf254SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
47bbdf254SAndrew Rist * or more contributor license agreements.  See the NOTICE file
57bbdf254SAndrew Rist * distributed with this work for additional information
67bbdf254SAndrew Rist * regarding copyright ownership.  The ASF licenses this file
77bbdf254SAndrew Rist * to you under the Apache License, Version 2.0 (the
87bbdf254SAndrew Rist * "License"); you may not use this file except in compliance
97bbdf254SAndrew Rist * with the License.  You may obtain a copy of the License at
10cdf0e10cSrcweir *
117bbdf254SAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir *
137bbdf254SAndrew Rist * Unless required by applicable law or agreed to in writing,
147bbdf254SAndrew Rist * software distributed under the License is distributed on an
157bbdf254SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
167bbdf254SAndrew Rist * KIND, either express or implied.  See the License for the
177bbdf254SAndrew Rist * specific language governing permissions and limitations
187bbdf254SAndrew Rist * under the License.
19cdf0e10cSrcweir *
207bbdf254SAndrew Rist *************************************************************/
217bbdf254SAndrew Rist
22cdf0e10cSrcweir#define _SV_MENU_SRC
23cdf0e10cSrcweir
24cdf0e10cSrcweir#include <svids.hrc>
25cdf0e10cSrcweir
26cdf0e10cSrcweirString SV_RESID_STRING_NOSELECTIONPOSSIBLE
27cdf0e10cSrcweir{
28cdf0e10cSrcweir    Text [ en-US ] = "<No selection possible>" ;
29cdf0e10cSrcweir};
30cdf0e10cSrcweir
31cdf0e10cSrcweirMenu SV_RESID_MENU_EDIT
32cdf0e10cSrcweir{
33cdf0e10cSrcweir    ItemList =
34cdf0e10cSrcweir    {
35cdf0e10cSrcweir        MenuItem
36cdf0e10cSrcweir        {
37cdf0e10cSrcweir            Identifier = SV_MENU_EDIT_UNDO ;
38cdf0e10cSrcweir            Text [ en-US ] = "~Undo" ;
39cdf0e10cSrcweir        };
40cdf0e10cSrcweir        MenuItem { Separator = TRUE ; } ;
41cdf0e10cSrcweir        MenuItem
42cdf0e10cSrcweir        {
43cdf0e10cSrcweir            Identifier = SV_MENU_EDIT_CUT ;
44cdf0e10cSrcweir            Text [ en-US ] = "Cu~t" ;
45cdf0e10cSrcweir        };
46cdf0e10cSrcweir        MenuItem
47cdf0e10cSrcweir        {
48cdf0e10cSrcweir            Identifier = SV_MENU_EDIT_COPY ;
49cdf0e10cSrcweir            Text [ en-US ] = "~Copy" ;
50cdf0e10cSrcweir        };
51cdf0e10cSrcweir        MenuItem
52cdf0e10cSrcweir        {
53cdf0e10cSrcweir            Identifier = SV_MENU_EDIT_PASTE ;
54cdf0e10cSrcweir            Text [ en-US ] = "~Paste" ;
55cdf0e10cSrcweir        };
56cdf0e10cSrcweir        MenuItem
57cdf0e10cSrcweir        {
58cdf0e10cSrcweir            Identifier = SV_MENU_EDIT_DELETE ;
59cdf0e10cSrcweir            Text [ en-US ] = "~Delete" ;
60cdf0e10cSrcweir        };
61cdf0e10cSrcweir        MenuItem { Separator = TRUE ; };
62cdf0e10cSrcweir        MenuItem
63cdf0e10cSrcweir        {
64cdf0e10cSrcweir            Identifier = SV_MENU_EDIT_SELECTALL ;
65cdf0e10cSrcweir            Text [ en-US ] = "Select ~All" ;
66cdf0e10cSrcweir        };
67cdf0e10cSrcweir        MenuItem { Separator = TRUE ; } ;
68cdf0e10cSrcweir        MenuItem
69cdf0e10cSrcweir        {
70cdf0e10cSrcweir            Identifier = SV_MENU_EDIT_INSERTSYMBOL ;
71cdf0e10cSrcweir            Text [ en-US ] = "~Special Character..." ;
72cdf0e10cSrcweir
73cdf0e10cSrcweir        };
74cdf0e10cSrcweir    };
75cdf0e10cSrcweir};
76cdf0e10cSrcweir
77cdf0e10cSrcweirString SV_MENU_MAC_SERVICES
78cdf0e10cSrcweir{
79cdf0e10cSrcweir    Text [ en-US ] = "Services" ;
80cdf0e10cSrcweir};
81cdf0e10cSrcweir
82cdf0e10cSrcweirString SV_MENU_MAC_HIDEAPP
83cdf0e10cSrcweir{
84cdf0e10cSrcweir    Text [ en-US ] = "Hide %PRODUCTNAME" ;
85cdf0e10cSrcweir};
86cdf0e10cSrcweir
87cdf0e10cSrcweirString SV_MENU_MAC_HIDEALL
88cdf0e10cSrcweir{
89cdf0e10cSrcweir    Text [ en-US ] = "Hide Others" ;
90cdf0e10cSrcweir};
91cdf0e10cSrcweir
92cdf0e10cSrcweirString SV_MENU_MAC_SHOWALL
93cdf0e10cSrcweir{
94cdf0e10cSrcweir    Text [ en-US ] = "Show All" ;
95cdf0e10cSrcweir};
96cdf0e10cSrcweir
97cdf0e10cSrcweirString SV_MENU_MAC_QUITAPP
98cdf0e10cSrcweir{
99cdf0e10cSrcweir    Text [ en-US ] = "Quit %PRODUCTNAME" ;
100cdf0e10cSrcweir};
101cdf0e10cSrcweir
102*ccc9df00Smseidel// ********************************************************************** EOF
103