xref: /trunk/main/cui/source/dialogs/hyphen.src (revision ffd38472365e95f6a578737bc9a5eb0fac624a86)
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 "helpid.hrc"
24#include "cuires.hrc"
25#include "hyphen.hrc"
26
27String RID_SVXSTR_HMERR_CHECKINSTALL
28{
29    Text [ en-US ] = "is not available for spellchecking\nPlease check your installation and install the desired language\n" ;
30};
31
32// RID_SVXDLG_HYPHENATE --------------------------------------------------
33ModalDialog RID_SVXDLG_HYPHENATE
34{
35    HelpId = HID_HYPHENATE ;
36    Size = MAP_APPFONT ( 200, 111 ) ;
37    OutputSize = TRUE ;
38    SvLook = TRUE ;
39    Text [ en-US ] = "Hyphenation" ;
40    Moveable = TRUE ;
41
42    FixedText FT_WORD
43    {
44        Pos = MAP_APPFONT ( 5, 5 ) ;
45        Size = MAP_APPFONT ( 120, 8 ) ;
46        Text [ en-US ] = "~Word" ;
47    };
48    Edit ED_WORD
49    {
50        HelpID = "cui:Edit:RID_SVXDLG_HYPHENATE:ED_WORD" ;
51        Border = TRUE ;
52        Pos = MAP_APPFONT ( 5, 17 ) ;
53        Size = MAP_APPFONT ( 132, 12 ) ;
54        TABSTOP = TRUE ;
55        LEFT = TRUE ;
56    };
57    ImageButton BTN_LEFT
58    {
59        HelpID = "cui:ImageButton:RID_SVXDLG_HYPHENATE:BTN_LEFT" ;
60        Pos = MAP_APPFONT ( 56, 33 ) ;
61        Size = MAP_APPFONT ( 14, 14 ) ;
62        TABSTOP = TRUE ;
63        SYMBOL = IMAGEBUTTON_ARROW_LEFT ;
64    };
65    ImageButton BTN_RIGHT
66    {
67        HelpID = "cui:ImageButton:RID_SVXDLG_HYPHENATE:BTN_RIGHT" ;
68        Pos = MAP_APPFONT ( 75, 33 ) ;
69        Size = MAP_APPFONT ( 14, 14 ) ;
70        TABSTOP = TRUE ;
71        Symbol = IMAGEBUTTON_ARROW_RIGHT ;
72    };
73    OKButton BTN_HYPH_CUT
74    {
75        Pos = MAP_APPFONT ( 144, 17 ) ;
76        Size = MAP_APPFONT ( 50, 14 ) ;
77        Text [ en-US ] = "H~yphenate" ;
78        TABSTOP = TRUE ;
79        DEFBUTTON = TRUE ;
80    };
81    PushButton BTN_HYPH_CONTINUE
82    {
83        HelpID = "cui:PushButton:RID_SVXDLG_HYPHENATE:BTN_HYPH_CONTINUE" ;
84        Pos = MAP_APPFONT ( 144, 35 ) ;
85        Size = MAP_APPFONT ( 50, 14 ) ;
86        Text [ en-US ] = "~Skip" ;
87        TABSTOP = TRUE ;
88    };
89    PushButton BTN_HYPH_DELETE
90    {
91        HelpID = "cui:PushButton:RID_SVXDLG_HYPHENATE:BTN_HYPH_DELETE" ;
92        Pos = MAP_APPFONT ( 144, 52 ) ;
93        Size = MAP_APPFONT ( 50, 14 ) ;
94        Text [ en-US ] = "~Remove" ;
95        TABSTOP = TRUE ;
96    };
97    FixedLine FL_BOTTOM
98    {
99        Pos = MAP_APPFONT ( 0, 81 ) ;
100        Size = MAP_APPFONT ( 200, 8 ) ;
101    };
102    HelpButton BTN_HYPH_HELP
103    {
104        Pos = MAP_APPFONT ( 5, 93 ) ;
105        Size = MAP_APPFONT ( 50, 14 ) ;
106        TABSTOP = TRUE ;
107    };
108    PushButton BTN_HYPH_ALL
109    {
110        HelpID = "cui:PushButton:RID_SVXDLG_HYPHENATE:BTN_HYPH_ALL" ;
111        Pos = MAP_APPFONT ( 63, 93 ) ;
112        Size = MAP_APPFONT ( 74, 14 ) ;
113        Text [ en-US ] = "Hyphenate ~All" ;
114        TABSTOP = TRUE ;
115    };
116    CancelButton BTN_HYPH_CANCEL
117    {
118        Pos = MAP_APPFONT ( 144, 93 ) ;
119        Size = MAP_APPFONT ( 50, 14 ) ;
120        Text [ en-US ] = "~Close" ;
121        TABSTOP = TRUE ;
122    };
123};
124
125// ********************************************************************** EOF
126