xref: /trunk/main/sw/source/ui/lingu/olmenu.src (revision 6fd2419af095b9e12baf06e33db2129edf4d719b)
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 "olmenu.hrc"
25#include "helpid.h"
26
27#define SEPARATOR MenuItem { Separator = TRUE; };
28
29Menu MN_SPELL_POPUP
30{
31    ItemList =
32    {
33        MenuItem
34        {
35            Identifier = MN_IGNORE_WORD ;
36            HelpID = HID_LINGU_IGNORE_WORD ;
37            Text [ en-US ] = "Ignore All" ;
38        };
39        MenuItem
40        {
41            Identifier = MN_ADD_TO_DIC ;
42            HelpID = HID_LINGU_ADD_WORD ;
43            SubMenu = Menu
44            {
45            };
46            Text [ en-US ] = "~Add" ;
47        };
48        MenuItem
49        {
50            Identifier = MN_AUTOCORR ;
51            HelpID = HID_LINGU_AUTOCORR ;
52            SubMenu = Menu
53            {
54            };
55            Text [ en-US ] = "AutoCorrect" ;
56        };
57        MenuItem
58        {
59            Identifier = MN_SPELLING_DLG ;
60            HelpID = HID_LINGU_SPELLING_DLG ;
61            Text [ en-US ] = "~Spellcheck..." ;
62        };
63        SEPARATOR
64        MenuItem
65        {
66            Identifier = MN_SET_LANGUAGE_SELECTION ;
67            SubMenu = Menu
68            {
69            };
70            Text [ en-US ] = "Set Language for Selection" ;
71        };
72        MenuItem
73        {
74            Identifier = MN_SET_LANGUAGE_PARAGRAPH ;
75            SubMenu = Menu
76            {
77            };
78            Text [ en-US ] = "Set Language for Paragraph" ;
79        };
80/*
81        MenuItem
82        {
83            Identifier = MN_SET_LANGUAGE_ALL_TEXT ;
84            SubMenu = Menu
85            {
86            };
87            Text [ en-US ] = "Set Language for all Text" ;
88        };
89*/
90    };
91};
92String STR_WORD
93{
94    Text [ en-US ] = "Word is " ;
95};
96String STR_PARAGRAPH
97{
98    Text [ en-US ] = "Paragraph is " ;
99};
100String STR_SPELL_OK
101{
102    Text [ en-US ] = "The spellcheck is complete." ;
103};
104String STR_HYP_OK
105{
106    Text [ en-US ] = "Hyphenation completed" ;
107};
108String STR_LANGSTATUS_NONE
109{
110    Text [ en-US ] = "None (Do not check spelling)" ;
111};
112String STR_RESET_TO_DEFAULT_LANGUAGE
113{
114    Text [ en-US ] = "Reset to Default Language" ;
115};
116String STR_LANGSTATUS_MORE
117{
118    Text [ en-US ] = "More..." ;
119};
120String STR_IGNORE_SELECTION
121{
122    Text [ en-US ] = "Ignore" ;
123};
124
125Image IMG_INFO_16
126{
127    ImageBitmap = Bitmap { File = "info_16.png" ; };
128};
129
130// ********************************************************************** EOF
131