xref: /aoo4110/main/sfx2/source/menu/menu.src (revision b1cdbd2c)
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#include "menu.hrc"
25#include <sfx2/sfxcommands.h>
26
27String STR_MENU_CFGITEM
28{
29	Text [ en-US ] = "Configuration Menu" ;
30};
31
32String STR_MENU_ADDONS
33{
34	Text [ en-US ] = "~Add-Ons" ;
35};
36
37Menu MN_CLIPBOARDFUNCS
38{
39	ItemList =
40	{
41		MenuItem
42		{
43    		Identifier = SID_CUT ;
44    		HelpID = CMD_SID_CUT ;
45    		Text [ en-US ] = "Cu~t" ;
46		};
47		MenuItem
48		{
49    		Identifier = SID_COPY ;
50    		HelpID = CMD_SID_COPY ;
51    		Text [ en-US ] = "~Copy" ;
52		};
53		MenuItem
54		{
55    		Identifier = SID_PASTE ;
56    		HelpID = CMD_SID_PASTE ;
57    		Text [ en-US ] = "~Paste" ;
58		};
59	};
60};
61
62String SID_WIN_FULLSCREEN
63{
64	Text [ en-US ] = "Leave Full-Screen Mode";
65};
66
67String STR_MENU_ADDONHELP
68{
69	Text [ en-US ] = "Add-~On Help" ;
70};
71
72String STR_MENU_SYNONYMS
73{
74    Text [ en-US ] = "Synonyms" ;
75};
76
77String STR_MENU_NO_SYNONYM_FOUND
78{
79    Text [ en-US ] = "(none)" ;
80};
81
82String STR_MENU_THESAURUS
83{
84    Text [ en-US ] = "~Thesaurus..." ;
85};
86
87// ******************************************************************* EOF
88
89
90
91
92
93
94
95