xref: /trunk/main/cui/source/dialogs/commonlingui.src (revision cdf0e10c4e3984b49a9502b011690b615761d4a3)
1/*************************************************************************
2 *
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
6 *
7 * OpenOffice.org - a multi-platform office productivity suite
8 *
9 * This file is part of OpenOffice.org.
10 *
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
14 *
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
20 *
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org.  If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
25 *
26 ************************************************************************/
27 // include ---------------------------------------------------------------
28#include <cuires.hrc>
29#include "helpid.hrc"
30#include "hangulhanjadlg.hrc"
31
32Window RID_SVX_WND_COMMON_LINGU
33{
34    DialogControl = TRUE;   // we want to tab out of this
35    Hide = TRUE;
36
37    FixedText FT_WORD
38    {
39        Pos = MAP_APPFONT( 6,  9 );
40        Size = MAP_APPFONT( 42, 10 );
41        Text [ en-US ] = "Origi~nal";
42    };
43    Control FT_AKTWORD
44    {
45        HelpId=HID_SPELLDLG_SETWORD;
46        Pos = MAP_APPFONT( 51, 9 );
47        Size = MAP_APPFONT( 164, 10 );
48        Border =FALSE;
49        TabStop = TRUE;
50    };
51
52    FixedText FT_NEWWORD
53    {
54        Pos = MAP_APPFONT(  6, 25 );
55        Size = MAP_APPFONT( 42, 10 );
56        Text [ en-US ] = "~Word" ;
57    };
58
59    Edit ED_NEWWORD
60    {
61        Pos = MAP_APPFONT( 51, 24 );
62        Size = MAP_APPFONT( 137, 12 );
63        Border = TRUE;
64    };
65
66    FixedText FT_SUGGESTION
67    {
68        Pos = MAP_APPFONT( 6, 48 );
69        Size = MAP_APPFONT( 42, 10 );
70        Text [ en-US ] = "~Suggestions" ;
71    };
72
73    PushButton BTN_IGNORE
74    {
75        Pos = MAP_APPFONT( 224, 6 );
76        Size = MAP_APPFONT( 55, 14 );
77        Text [ en-US ] = "~Ignore" ;
78    };
79
80    PushButton BTN_IGNOREALL
81    {
82        Pos = MAP_APPFONT( 224, 22 );
83        Size = MAP_APPFONT( 55, 14 );
84        Text [ en-US ] = "Always I~gnore" ;
85    };
86
87    PushButton BTN_CHANGE
88    {
89        Pos = MAP_APPFONT( 224, 40 );
90        Size = MAP_APPFONT( 55, 14 );
91        Text [ en-US ] = "~Replace" ;
92        DefButton = TRUE ;
93    };
94
95    PushButton BTN_CHANGEALL
96    {
97        Pos = MAP_APPFONT( 224, 56 );
98        Size = MAP_APPFONT( 55, 14 );
99        Text [ en-US ] = "Always R~eplace" ;
100    };
101
102    PushButton BTN_OPTIONS
103    {
104        Pos = MAP_APPFONT( 224, 129 );
105        Size = MAP_APPFONT( 55, 14 );
106        Hide = TRUE ;
107        Text [ en-US ] = "Options..." ;
108    };
109
110    FixedText FT_STATUS
111    {
112        Pos = MAP_APPFONT(  6, 155 );
113        Size = MAP_APPFONT( 130, 10 );
114    };
115
116    GroupBox GB_AUDIT
117    {
118        Pos = MAP_APPFONT( 1, 1 );
119        Size = MAP_APPFONT( 283, 148 );
120        Hide=TRUE;
121    };
122
123    HelpButton BTN_SPL_HELP
124    {
125        Pos = MAP_APPFONT( 160, 153 );
126        Size = MAP_APPFONT( 55, 14 );
127    };
128
129    CancelButton BTN_SPL_CANCEL
130    {
131        Pos = MAP_APPFONT ( 224 , 153 ) ;
132        Size = MAP_APPFONT ( 55 , 14 ) ;
133        TabStop = TRUE ;
134        Text [ en-US ] = "~Close" ;
135    };
136};
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154