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