xref: /trunk/main/cui/source/dialogs/commonlingui.src (revision a3cbd3e50c1a12e759959b66e76b58b3aeb2b2af)
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// include ---------------------------------------------------------------
23#include <cuires.hrc>
24#include "helpid.hrc"
25#include "hangulhanjadlg.hrc"
26
27Window RID_SVX_WND_COMMON_LINGU
28{
29    DialogControl = TRUE ; // we want to tab out of this
30    Hide = TRUE ;
31
32    FixedText FT_WORD
33    {
34        Pos = MAP_APPFONT ( 6, 9 ) ;
35        Size = MAP_APPFONT ( 42, 10 ) ;
36        Text [ en-US ] = "Origi~nal" ;
37    };
38    Control FT_AKTWORD
39    {
40        HelpId=HID_SPELLDLG_SETWORD ;
41        Pos = MAP_APPFONT ( 51, 9 ) ;
42        Size = MAP_APPFONT ( 164, 10 ) ;
43        Border = FALSE ;
44        TabStop = TRUE ;
45    };
46
47    FixedText FT_NEWWORD
48    {
49        Pos = MAP_APPFONT ( 6, 25 ) ;
50        Size = MAP_APPFONT ( 42, 10 ) ;
51        Text [ en-US ] = "~Word" ;
52    };
53
54    Edit ED_NEWWORD
55    {
56        Pos = MAP_APPFONT ( 51, 24 ) ;
57        Size = MAP_APPFONT ( 137, 12 ) ;
58        Border = TRUE ;
59    };
60
61    FixedText FT_SUGGESTION
62    {
63        Pos = MAP_APPFONT ( 6, 48 ) ;
64        Size = MAP_APPFONT ( 42, 10 ) ;
65        Text [ en-US ] = "~Suggestions" ;
66    };
67
68    PushButton BTN_IGNORE
69    {
70        Pos = MAP_APPFONT ( 224, 6 ) ;
71        Size = MAP_APPFONT ( 55, 14 ) ;
72        Text [ en-US ] = "~Ignore" ;
73    };
74
75    PushButton BTN_IGNOREALL
76    {
77        Pos = MAP_APPFONT ( 224, 22 ) ;
78        Size = MAP_APPFONT ( 55, 14 ) ;
79        Text [ en-US ] = "Always I~gnore" ;
80    };
81
82    PushButton BTN_CHANGE
83    {
84        Pos = MAP_APPFONT ( 224, 40 ) ;
85        Size = MAP_APPFONT ( 55, 14 ) ;
86        Text [ en-US ] = "~Replace" ;
87        DefButton = TRUE ;
88    };
89
90    PushButton BTN_CHANGEALL
91    {
92        Pos = MAP_APPFONT ( 224, 56 ) ;
93        Size = MAP_APPFONT ( 55, 14 ) ;
94        Text [ en-US ] = "Always R~eplace" ;
95    };
96
97    PushButton BTN_OPTIONS
98    {
99        Pos = MAP_APPFONT ( 224, 129 ) ;
100        Size = MAP_APPFONT ( 55, 14 ) ;
101        Hide = TRUE ;
102        Text [ en-US ] = "Options..." ;
103    };
104
105    FixedText FT_STATUS
106    {
107        Pos = MAP_APPFONT ( 6, 155 ) ;
108        Size = MAP_APPFONT ( 130, 10 ) ;
109    };
110
111    GroupBox GB_AUDIT
112    {
113        Pos = MAP_APPFONT ( 1, 1 ) ;
114        Size = MAP_APPFONT ( 283, 148 ) ;
115        Hide=TRUE ;
116    };
117
118    HelpButton BTN_SPL_HELP
119    {
120        Pos = MAP_APPFONT ( 160, 153 ) ;
121        Size = MAP_APPFONT ( 55, 14 ) ;
122    };
123
124    CancelButton BTN_SPL_CANCEL
125    {
126        Pos = MAP_APPFONT ( 224 , 153 ) ;
127        Size = MAP_APPFONT ( 55 , 14 ) ;
128        TabStop = TRUE ;
129        Text [ en-US ] = "~Close" ;
130    };
131};
132
133// ********************************************************************** EOF
134