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