xref: /trunk/main/cui/source/tabpages/autocdlg.src (revision af7f2cbf3d6a5481a2f45e7fae5e85a32449c47d)
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 "autocdlg.hrc"
26#include <cuires.hrc>
27#include "helpid.hrc"
28#include <svx/svxids.hrc> // SID_AUTOFORMAT
29
30// pragma -------------------------------------------------------------------
31/**************************************************************************/
32/* TabDialog RID_OFA_AUTOCORR_DLG                                         */
33/**************************************************************************/
34TabDialog RID_OFA_AUTOCORR_DLG
35{
36    OutputSize = TRUE ;
37    SVLook = TRUE ;
38    Text [ en-US ] = "AutoCorrect" ;
39    Moveable = TRUE ;
40    TabControl 1
41    {
42        SVLook = TRUE ;
43        PageList =
44        {
45            PageItem
46            {
47                Identifier = RID_OFAPAGE_AUTOCORR_REPLACE ;
48                Text [ en-US ] = "Replace" ;
49            };
50            PageItem
51            {
52                Identifier = RID_OFAPAGE_AUTOCORR_EXCEPT ;
53                Text [ en-US ] = "Exceptions" ;
54            };
55            PageItem
56            {
57                Identifier = RID_OFAPAGE_AUTOCORR_OPTIONS ;
58                Text [ en-US ] = "Options" ;
59            };
60            PageItem
61            {
62                Identifier = RID_OFAPAGE_AUTOFMT_APPLY ;
63                Text [ en-US ] = "Options" ;
64            };
65            PageItem
66            {
67                Identifier = RID_OFAPAGE_AUTOCORR_QUOTE ;
68                Text [ en-US ] = "Localized Options" ;
69            };
70            PageItem
71            {
72                Identifier = RID_OFAPAGE_AUTOCOMPLETE_OPTIONS ;
73                Text [ en-US ] = "Word Completion" ;
74            };
75            PageItem
76            {
77                Identifier = RID_OFAPAGE_SMARTTAG_OPTIONS ;
78                Text [ en-US ] = "Smart Tags" ;
79            };
80        };
81    };
82    FixedText FT_LANG
83    {
84        Pos = MAP_APPFONT ( 6, 3 ) ;
85        Size = MAP_APPFONT ( 140, 8 ) ;
86
87        Left = TRUE ;
88        Text [ en-US ] = "Replacements and exceptions for language:" ;
89    };
90    ListBox LB_LANG
91    {
92        Pos = MAP_APPFONT ( 150, 3 ) ;
93        Size = MAP_APPFONT ( 60, 100 ) ;
94        DropDown = TRUE;
95        TabStop = TRUE ;
96        Border = TRUE ;
97    };
98};
99#define COMMON_CLB_ENTRIES \
100    String ST_USE_REPLACE \
101    { \
102        Text [ en-US ] = "Use replacement table" ; \
103    }; \
104    String ST_CPTL_STT_WORD \
105    { \
106        Text [ en-US ] = "Correct TWo INitial CApitals" ; \
107    }; \
108    String ST_CPTL_STT_SENT \
109    { \
110        Text [ en-US ] = "Capitalize first letter of every sentence" ; \
111    }; \
112    String ST_BOLD_UNDER \
113    { \
114        Text [ en-US ] = "Automatic *bold* and _underline_" ; \
115    }; \
116    String STR_NO_DBL_SPACES \
117    { \
118        Text [ en-US ] = "Ignore double spaces" ; \
119    }; \
120    String ST_DETECT_URL \
121    { \
122        Text [ en-US ] = "URL Recognition" ; \
123    }; \
124    String ST_DASH \
125    { \
126        Text [ en-US ] = "Replace dashes" ; \
127    };
128
129/**************************************************************************/
130/* Beschreibung: Autokorrektur-Optionen                                   */
131/**************************************************************************/
132TabPage RID_OFAPAGE_AUTOCORR_OPTIONS
133{
134    HelpId = HID_OFAPAGE_AUTOCORR_OPTIONS ;
135    OutputSize = TRUE ;
136    Size = MAP_APPFONT ( 260, 185 ) ;
137    Hide = TRUE ;
138    SVLook = TRUE ;
139    Text [ en-US ] = "Settings" ;
140    Control CLB_SETTINGS
141    {
142        Pos = MAP_APPFONT ( 6, 6 ) ;
143        Size = MAP_APPFONT ( 248, 173 ) ;
144        Border = TRUE ;
145        TabStop = TRUE ;
146    };
147    COMMON_CLB_ENTRIES
148};
149/**************************************************************************/
150/*                                                                        */
151/**************************************************************************/
152TabPage RID_OFAPAGE_AUTOFMT_APPLY
153{
154    HelpID = HID_OFAPAGE_AUTOFMT_OPTIONS ;
155    SVLook = TRUE ;
156    Hide = TRUE ;
157    Size = MAP_APPFONT ( 260, 185 ) ;
158    Control CLB_SETTINGS
159    {
160        Pos = MAP_APPFONT ( 6, 6 ) ;
161        Size = MAP_APPFONT ( 248, 149 ) ;
162        Border = TRUE ;
163        TabStop = TRUE ;
164    };
165    PushButton PB_EDIT
166    {
167        HelpID = "cui:PushButton:RID_OFAPAGE_AUTOFMT_APPLY:PB_EDIT" ;
168        Pos = MAP_APPFONT ( 6, 162 ) ;
169        Size = MAP_APPFONT ( 50, 14 ) ;
170        Text [ en-US ] = "~Edit..." ;
171        TabStop = TRUE ;
172    };
173    String STR_HEADER1
174    {
175        Text [ en-US ] = "[M]" ;
176    };
177    String STR_HEADER2
178    {
179        Text [ en-US ] = "[T]" ;
180    };
181    FixedText FT_HEADER1_EXPLANATION
182    {
183        Pos = MAP_APPFONT ( 80, 159 ) ;
184        Size = MAP_APPFONT ( 174, 8 ) ;
185        Text [ en-US ] = "[M]: Replace while modifying existing text" ;
186    };
187    FixedText FT_HEADER2_EXPLANATION
188    {
189        Pos = MAP_APPFONT ( 80, 171 ) ;
190        Size = MAP_APPFONT ( 174, 8 ) ;
191        Text [ en-US ] = "[T]: AutoFormat/AutoCorrect while typing" ;
192    };
193    COMMON_CLB_ENTRIES
194    String ST_DEL_EMPTY_PARA
195    {
196        Text [ en-US ] = "Remove blank paragraphs" ;
197    };
198    String ST_USER_STYLE
199    {
200        Text [ en-US ] = "Replace Custom Styles" ;
201    };
202    String ST_BULLET
203    {
204        Text [ en-US ] = "Replace bullets with: " ;
205    };
206    String ST_RIGHT_MARGIN
207    {
208        Text [ en-US ] = "Combine single line paragraphs if length greater than" ;
209    };
210    String STR_NUM
211    {
212        Text [ en-US ] = "Apply numbering - symbol: " ;
213    };
214    String STR_BORDER
215    {
216        Text [ en-US ] = "Apply border" ;
217    };
218    String STR_TABLE
219    {
220        Text [ en-US ] = "Create table" ;
221    };
222    String STR_REPLACE_TEMPLATES
223    {
224        Text [ en-US ] = "Apply Styles" ;
225    };
226    String STR_DEL_SPACES_AT_STT_END
227    {
228        Text [ en-US ] = "Delete spaces and tabs at beginning and end of paragraph" ;
229    };
230    String STR_DEL_SPACES_BETWEEN_LINES
231    {
232        Text [ en-US ] = "Delete spaces and tabs at end and start of line" ;
233    };
234};
235
236ModalDialog RID_OFADLG_PRCNT_SET
237{
238    HelpID = CMD_SID_AUTOFORMAT ;
239    OutputSize = TRUE ;
240    SVLook = TRUE ;
241    Size = MAP_APPFONT ( 155, 43 ) ;
242    Moveable = TRUE ;
243    FixedLine FL_PRCNT
244    {
245        Pos = MAP_APPFONT ( 4, 3 ) ;
246        Size = MAP_APPFONT ( 87, 8 ) ;
247        Text [ en-US ] = "Minimum size" ;
248    };
249    OKButton BT_OK
250    {
251        Pos = MAP_APPFONT ( 99, 6 ) ;
252        Size = MAP_APPFONT ( 50, 14 ) ;
253        TabStop = TRUE ;
254        DefButton = TRUE ;
255    };
256    CancelButton BT_CANCEL
257    {
258        Pos = MAP_APPFONT ( 99, 23 ) ;
259        Size = MAP_APPFONT ( 50, 14 ) ;
260        TabStop = TRUE ;
261    };
262    MetricField ED_RIGHT_MARGIN
263    {
264        HelpID = "cui:MetricField:RID_OFADLG_PRCNT_SET:ED_RIGHT_MARGIN" ;
265        Border = TRUE ;
266        Pos = MAP_APPFONT ( 7, 14 ) ;
267        Size = MAP_APPFONT ( 31, 12 ) ;
268        TabStop = TRUE ;
269        Left = TRUE ;
270        Repeat = TRUE ;
271        Spin = TRUE ;
272        Maximum = 100 ;
273        Value = 77 ;
274        Unit = FUNIT_PERCENT ;
275        First = 10 ;
276        Last = 100 ;
277        SpinSize = 5 ;
278    };
279    Text [ en-US ] = "Combine" ;
280};
281
282/**************************************************************************/
283/* Beschreibung: Ersetzungstabelle                                        */
284/**************************************************************************/
285TabPage RID_OFAPAGE_AUTOCORR_REPLACE
286{
287    HelpId = HID_OFAPAGE_AUTOCORR_REPLACE ;
288    OutputSize = TRUE ;
289    Size = MAP_APPFONT ( 260, 185 ) ;
290    SVLook = TRUE ;
291    Hide = TRUE ;
292    FixedText FT_SHORT
293    {
294        Pos = MAP_APPFONT ( 7, 3 ) ;
295        Size = MAP_APPFONT ( 60, 8 ) ;
296        Text [ en-US ] = "Repla~ce" ;
297        Left = TRUE ;
298    };
299    Edit ED_SHORT
300    {
301        HelpID = "cui:Edit:RID_OFAPAGE_AUTOCORR_REPLACE:ED_SHORT" ;
302        Pos = MAP_APPFONT ( 7, 13 ) ;
303        Size = MAP_APPFONT ( 60, 12 ) ;
304        Border = TRUE ;
305        TabStop = TRUE ;
306    };
307    FixedText FT_REPLACE
308    {
309        Pos = MAP_APPFONT ( 71, 3 ) ;
310        Size = MAP_APPFONT ( 64, 8 ) ;
311        Text [ en-US ] = "~With:" ;
312        Left = TRUE ;
313    };
314    Edit ED_REPLACE
315    {
316        HelpID = "cui:Edit:RID_OFAPAGE_AUTOCORR_REPLACE:ED_REPLACE" ;
317        Pos = MAP_APPFONT ( 71, 13 ) ;
318        Size = MAP_APPFONT ( 123, 12 ) ;
319        Border = TRUE ;
320        TabStop = TRUE ;
321    };
322    CheckBox CB_TEXT_ONLY
323    {
324        HelpID = "cui:CheckBox:RID_OFAPAGE_AUTOCORR_REPLACE:CB_TEXT_ONLY" ;
325        Pos = MAP_APPFONT ( 140, 3 ) ;
326        Size = MAP_APPFONT ( 108, 10 ) ;
327        TabStop = TRUE ;
328        Text [ en-US ] = "~Text only" ;
329    };
330    PushButton PB_NEW_REPLACE
331    {
332        HelpID = "cui:PushButton:RID_OFAPAGE_AUTOCORR_REPLACE:PB_NEW_REPLACE" ;
333        Pos = MAP_APPFONT ( 198, 14 ) ;
334        Size = MAP_APPFONT ( 50, 14 ) ;
335        TabStop = TRUE ;
336        Text [ en-US ] = "~New" ;
337    };
338    PushButton PB_DELETE_REPLACE
339    {
340        HelpID = "cui:PushButton:RID_OFAPAGE_AUTOCORR_REPLACE:PB_DELETE_REPLACE" ;
341        Pos = MAP_APPFONT ( 198, 32 ) ;
342        Size = MAP_APPFONT ( 50, 14 ) ;
343        TabStop = TRUE ;
344        Text [ en-US ] = "~Delete" ;
345    };
346    Control TLB_REPLACE
347    {
348        HelpId = HID_OFACTL_AUTOCORR_REPLACE ;
349        Pos = MAP_APPFONT ( 7, 29 ) ;
350        Size = MAP_APPFONT ( 187, 150 ) ;
351        Border = TRUE ;
352        TabStop = TRUE ;
353    };
354    String STR_MODIFY
355    {
356        Text [ en-US ] = "~Replace" ;
357    };
358};
359/**************************************************************************/
360/* Beschreibung: Ausnahmelisten                                           */
361/**************************************************************************/
362TabPage RID_OFAPAGE_AUTOCORR_EXCEPT
363{
364    HelpId = HID_OFAPAGE_AUTOCORR_EXCEPT ;
365    OutputSize = TRUE ;
366    Size = MAP_APPFONT ( 260, 185 ) ;
367    SVLook = TRUE ;
368    Hide = TRUE ;
369    FixedLine FL_ABBREV
370    {
371        Pos = MAP_APPFONT ( 4, 3 ) ;
372        Size = MAP_APPFONT ( 252, 8 ) ;
373        Text [ en-US ] = "Abbreviations (no subsequent capital)" ;
374    };
375    Edit ED_ABBREV
376    {
377        HelpID = "cui:Edit:RID_OFAPAGE_AUTOCORR_EXCEPT:ED_ABBREV" ;
378        Pos = MAP_APPFONT ( 7, 14 ) ;
379        Size = MAP_APPFONT ( 123, 12 ) ;
380        TabStop = TRUE ;
381        Border = TRUE ;
382    };
383    ListBox LB_ABBREV
384    {
385        HelpID = "cui:ListBox:RID_OFAPAGE_AUTOCORR_EXCEPT:LB_ABBREV" ;
386        Pos = MAP_APPFONT ( 7, 30 ) ;
387        Size = MAP_APPFONT ( 123, 58 ) ;
388        TabStop = TRUE ;
389        AutoHScroll = TRUE ;
390        SORT = TRUE ;
391        Border = TRUE ;
392    };
393    PushButton PB_NEWABBREV
394    {
395        HelpID = "cui:PushButton:RID_OFAPAGE_AUTOCORR_EXCEPT:PB_NEWABBREV" ;
396        Pos = MAP_APPFONT ( 198, 14 ) ;
397        Size = MAP_APPFONT ( 50, 14 ) ;
398        TabStop = TRUE ;
399        Disable = TRUE ;
400        Text [ en-US ] = "~New" ;
401    };
402    PushButton PB_DELABBREV
403    {
404        HelpID = "cui:PushButton:RID_OFAPAGE_AUTOCORR_EXCEPT:PB_DELABBREV" ;
405        Pos = MAP_APPFONT ( 198, 31 ) ;
406        Size = MAP_APPFONT ( 50, 14 ) ;
407        TabStop = TRUE ;
408        Disable = TRUE ;
409        Text [ en-US ] = "~Delete" ;
410    };
411    CheckBox CB_AUTOABBREV
412    {
413        HelpID = "cui:CheckBox:RID_OFAPAGE_AUTOCORR_EXCEPT:CB_AUTOABBREV" ;
414        Pos = MAP_APPFONT ( 137, 78 ) ;
415        Size = MAP_APPFONT ( 111, 10 ) ;
416        Text [ en-US ] = "~AutoInclude" ;
417        TabStop = TRUE ;
418    };
419    FixedLine FL_DOUBLECAPS
420    {
421        Pos = MAP_APPFONT ( 4, 94 ) ;
422        Size = MAP_APPFONT ( 252, 8 ) ;
423        Text [ en-US ] = "Words with TWo INitial CApitals" ;
424    };
425    Edit ED_DOUBLE_CAPS
426    {
427        HelpID = "cui:Edit:RID_OFAPAGE_AUTOCORR_EXCEPT:ED_DOUBLE_CAPS" ;
428        Pos = MAP_APPFONT ( 7, 105 ) ;
429        Size = MAP_APPFONT ( 123, 12 ) ;
430        TabStop = TRUE ;
431        Border = TRUE ;
432    };
433    ListBox LB_DOUBLE_CAPS
434    {
435        HelpID = "cui:ListBox:RID_OFAPAGE_AUTOCORR_EXCEPT:LB_DOUBLE_CAPS" ;
436        Pos = MAP_APPFONT ( 7, 120 ) ;
437        Size = MAP_APPFONT ( 123, 59 ) ;
438        TabStop = TRUE ;
439        AutoHScroll = TRUE ;
440        SORT = TRUE ;
441        Border = TRUE ;
442    };
443    PushButton PB_NEWDOUBLECAPS
444    {
445        HelpID = "cui:PushButton:RID_OFAPAGE_AUTOCORR_EXCEPT:PB_NEWDOUBLECAPS" ;
446        Pos = MAP_APPFONT ( 198, 105 ) ;
447        Size = MAP_APPFONT ( 50, 14 ) ;
448        Disable = TRUE ;
449        Text [ en-US ] = "Ne~w" ;
450    };
451    PushButton PB_DELDOUBLECAPS
452    {
453        HelpID = "cui:PushButton:RID_OFAPAGE_AUTOCORR_EXCEPT:PB_DELDOUBLECAPS" ;
454        Pos = MAP_APPFONT ( 198, 122 ) ;
455        Size = MAP_APPFONT ( 50, 14 ) ;
456        Disable = TRUE ;
457        Text [ en-US ] = "Dele~te" ;
458    };
459    CheckBox CB_AUTOCAPS
460    {
461        HelpID = "cui:CheckBox:RID_OFAPAGE_AUTOCORR_EXCEPT:CB_AUTOCAPS" ;
462        Pos = MAP_APPFONT ( 137, 169 ) ;
463        Size = MAP_APPFONT ( 111, 10 ) ;
464        Text [ en-US ] = "A~utoInclude" ;
465    };
466    String STR_PB_NEWABBREV
467    {
468        Text [ en-US ] = "New abbreviations" ;
469    };
470    String STR_PB_DELABBREV
471    {
472        Text [ en-US ] = "Delete abbreviations" ;
473    };
474    String STR_PB_NEWDOUBLECAPS
475    {
476        Text [ en-US ] = "New words with two initial capitals" ;
477    };
478    String STR_PB_DELDOUBLECAPS
479    {
480        Text [ en-US ] = "Delete words with two initial capitals" ;
481    };
482    String STR_PB_SGL_STD
483    {
484        Text [ en-US ] = "Single quotes default" ;
485    };
486    String STR_PB_DBL_STD
487    {
488        Text [ en-US ] = "Double quotes default" ;
489    };
490    String STR_PB_SGL_START
491    {
492        Text [ en-US ] = "Start quote of single quotes" ;
493    };
494    String STR_PB_DBL_START
495    {
496        Text [ en-US ] = "Start quote of double quotes" ;
497    };
498    String STR_PB_SGL_END
499    {
500        Text [ en-US ] = "End quote of single quotes" ;
501    };
502    String STR_PB_DBL_END
503    {
504        Text [ en-US ] = "End quote of double quotes" ;
505    };
506};
507/**************************************************************************/
508/* Beschreibung: Typografische Anführungszeichen                          */
509/**************************************************************************/
510TabPage RID_OFAPAGE_AUTOCORR_QUOTE
511{
512    HelpId = HID_OFAPAGE_AUTOCORR_QUOTE ;
513    OutputSize = TRUE ;
514    Size = MAP_APPFONT ( 260, 185 ) ;
515    SVLook = TRUE ;
516    Hide = TRUE ;
517    Text [ en-US ] = "Localized Options" ;
518    Control CLB_SETTINGS
519    {
520        Pos = MAP_APPFONT ( 4, 3 ) ;
521        Size = MAP_APPFONT ( 252, 85 ) ;
522        Border = TRUE ;
523        TabStop = TRUE ;
524    };
525    String STR_HEADER1
526    {
527        Text [ en-US ] = "[M]" ;
528    };
529    String STR_HEADER2
530    {
531        Text [ en-US ] = "[T]" ;
532    };
533    String ST_NON_BREAK_SPACE
534    {
535        Text [ en-US ] = "Add non breaking space before specific punctuation marks in French text" ;
536    };
537    String ST_ORDINAL
538    {
539        Text [ en-US ] = "Format ordinal numbers suffixes (1st -> 1^st)" ;
540    };
541    FixedLine FL_SINGLE
542    {
543        Pos = MAP_APPFONT ( 4, 90 ) ;
544        Size = MAP_APPFONT ( 122, 8 ) ;
545        Text [ en-US ] = "Single quotes" ;
546    };
547    CheckBox CB_SGL_TYPO
548    {
549        HelpId = "cui:CheckBox:RID_OFAPAGE_AUTOCORR_QUOTE:CB_SGL_TYPO" ;
550        Pos = MAP_APPFONT ( 7, 101 ) ;
551        Size = MAP_APPFONT ( 86, 10 ) ;
552        Text [ en-US ] = "Repla~ce" ;
553    };
554    FixedText FT_SGL_STARTQUOTE
555    {
556        Pos = MAP_APPFONT ( 7, 114 ) ;
557        Size = MAP_APPFONT ( 86, 8 ) ;
558        Text [ en-US ] = "~Start quote:" ;
559    };
560    PushButton PB_SGL_STARTQUOTE
561    {
562        HelpID = "cui:PushButton:RID_OFAPAGE_AUTOCORR_QUOTE:PB_SGL_STARTQUOTE" ;
563        Pos = MAP_APPFONT ( 10, 125 ) ;
564        Size = MAP_APPFONT ( 12, 12 ) ;
565        Text = "\'" ;
566        TabStop = TRUE ;
567    };
568    FixedText FT_SGSTEX
569    {
570        Pos = MAP_APPFONT ( 26, 127 ) ;
571        Size = MAP_APPFONT ( 50, 8 ) ;
572    };
573    FixedText FT_SGL_ENDQUOTE
574    {
575        Pos = MAP_APPFONT ( 7, 139 ) ;
576        Size = MAP_APPFONT ( 86, 8 ) ;
577        Text [ en-US ] = "~End quote:" ;
578    };
579    PushButton PB_SGL_ENDQUOTE
580    {
581        HelpID = "cui:PushButton:RID_OFAPAGE_AUTOCORR_QUOTE:PB_SGL_ENDQUOTE" ;
582        Pos = MAP_APPFONT ( 10, 151 ) ;
583        Size = MAP_APPFONT ( 12, 12 ) ;
584        Text = "\'" ;
585        TabStop = TRUE ;
586    };
587    FixedText FT_SGENEX
588    {
589        Pos = MAP_APPFONT ( 26, 153 ) ;
590        Size = MAP_APPFONT ( 50, 8 ) ;
591    };
592    PushButton PB_SGL_STD
593    {
594        HelpID = "cui:PushButton:RID_OFAPAGE_AUTOCORR_QUOTE:PB_SGL_STD" ;
595        Pos = MAP_APPFONT ( 7, 167 ) ;
596        Size = MAP_APPFONT ( 50, 14 ) ;
597        TabStop = TRUE ;
598        Text [ en-US ] = "~Default" ;
599    };
600    FixedLine FL_DOUBLE
601    {
602        Pos = MAP_APPFONT ( 134, 90 ) ;
603        Size = MAP_APPFONT ( 122, 8 ) ;
604        Text [ en-US ] = "Double quotes" ;
605    };
606    CheckBox CB_TYPO
607    {
608        HelpID = "cui:CheckBox:RID_OFAPAGE_AUTOCORR_QUOTE:CB_TYPO" ;
609        Pos = MAP_APPFONT ( 137, 101 ) ;
610        Size = MAP_APPFONT ( 86, 10 ) ;
611        TabStop = TRUE ;
612        Text [ en-US ] = "Repl~ace" ;
613    };
614    FixedText FT_STARTQUOTE
615    {
616        Pos = MAP_APPFONT ( 137, 114 ) ;
617        Size = MAP_APPFONT ( 86, 8 ) ;
618        Text [ en-US ] = "Start q~uote:" ;
619    };
620    PushButton PB_STARTQUOTE
621    {
622        HelpID = "cui:PushButton:RID_OFAPAGE_AUTOCORR_QUOTE:PB_STARTQUOTE" ;
623        Pos = MAP_APPFONT ( 140, 125 ) ;
624        Size = MAP_APPFONT ( 12, 12 ) ;
625        Text = "\"" ;
626        TabStop = TRUE ;
627    };
628    FixedText FT_DBSTEX
629    {
630        Pos = MAP_APPFONT ( 156, 127 ) ;
631        Size = MAP_APPFONT ( 50, 8 ) ;
632    };
633    FixedText FT_ENDQUOTE
634    {
635        Pos = MAP_APPFONT ( 137, 139 ) ;
636        Size = MAP_APPFONT ( 86, 10 ) ;
637        Text [ en-US ] = "E~nd quote:" ;
638    };
639    PushButton PB_ENDQUOTE
640    {
641        HelpID = "cui:PushButton:RID_OFAPAGE_AUTOCORR_QUOTE:PB_ENDQUOTE" ;
642        Pos = MAP_APPFONT ( 140, 151 ) ;
643        Size = MAP_APPFONT ( 12, 12 ) ;
644        Text = "\"" ;
645        TabStop = TRUE ;
646    };
647    FixedText FT_DBECEX
648    {
649        Pos = MAP_APPFONT ( 156, 153 ) ;
650        Size = MAP_APPFONT ( 50, 8 ) ;
651    };
652    PushButton PB_DBL_STD
653    {
654        HelpID = "cui:PushButton:RID_OFAPAGE_AUTOCORR_QUOTE:PB_DBL_STD" ;
655        Pos = MAP_APPFONT ( 137, 167 ) ;
656        Size = MAP_APPFONT ( 50, 14 ) ;
657        TabStop = TRUE ;
658        Text [ en-US ] = "De~fault" ;
659    };
660    String STR_CHANGE_START
661    {
662        Text [ en-US ] = "Start quote" ;
663    };
664    String STR_CHANGE_END
665    {
666        Text [ en-US ] = "End quote" ;
667    };
668    String ST_STANDARD
669    {
670        Text [ en-US ] = "Default" ;
671    };
672};
673
674/**************************************************************************/
675/* Beschreibung: automatische Wortergänzung                               */
676/**************************************************************************/
677TabPage RID_OFAPAGE_AUTOCOMPLETE_OPTIONS
678{
679    HelpId = HID_OFAPAGE_AUTOCOMPLETE_OPTIONS ;
680    OutputSize = TRUE ;
681    Size = MAP_APPFONT ( 260, 185 ) ;
682    SVLook = TRUE ;
683    Hide = TRUE ;
684    CheckBox CB_ACTIV
685    {
686        HelpID = "cui:CheckBox:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:CB_ACTIV" ;
687        Pos = MAP_APPFONT ( 4, 3 ) ;
688        Size = MAP_APPFONT ( 116, 10 ) ;
689        Text [ en-US ] = "Enable word ~completion" ;
690    };
691    CheckBox CB_APPEND_SPACE
692    {
693        HelpID = "cui:CheckBox:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:CB_APPEND_SPACE" ;
694        Pos = MAP_APPFONT ( 10, 17 ) ;
695        Size = MAP_APPFONT ( 110, 10 ) ;
696        Text [ en-US ] = "~Append space" ;
697    };
698    CheckBox CB_AS_TIP
699    {
700        HelpID = "cui:CheckBox:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:CB_AS_TIP" ;
701        Pos = MAP_APPFONT ( 10, 31 ) ;
702        Size = MAP_APPFONT ( 110, 10 ) ;
703        Text [ en-US ] = "~Show as tip" ;
704    };
705    CheckBox CB_COLLECT
706    {
707        HelpID = "cui:CheckBox:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:CB_COLLECT" ;
708        Pos = MAP_APPFONT ( 4, 45 ) ;
709        Size = MAP_APPFONT ( 116, 10 ) ;
710        Text [ en-US ] = "C~ollect words" ;
711    };
712    CheckBox CB_REMOVE_LIST
713    {
714        HelpID = "cui:CheckBox:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:CB_REMOVE_LIST" ;
715        Pos = MAP_APPFONT ( 10, 59 ) ;
716        Size = MAP_APPFONT ( 110, 40 ) ;
717        WordBreak = TRUE ;
718        Text [ en-US ] = "~When closing a document, remove the words collected from it from the list" ;
719    };
720    FixedText FT_EXPAND_KEY
721    {
722        Pos = MAP_APPFONT ( 4, 102 ) ;
723        Size = MAP_APPFONT ( 116, 8 ) ;
724        Text [ en-US ] = "Acc~ept with" ;
725    };
726    ListBox DCB_EXPAND_KEY
727    {
728        HelpID = "cui:ListBox:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:DCB_EXPAND_KEY" ;
729        Pos = MAP_APPFONT ( 4, 113 ) ;
730        Size = MAP_APPFONT ( 116, 60 ) ;
731        TabStop = TRUE ;
732        DropDown = TRUE ;
733        Group = TRUE ;
734        Sort = FALSE ;
735    };
736    FixedText FT_MIN_WORDLEN
737    {
738        Pos = MAP_APPFONT ( 4, 129 ) ;
739        Size = MAP_APPFONT ( 116, 8 ) ;
740        Text [ en-US ] = "Mi~n. word length" ;
741    };
742    NumericField NF_MIN_WORDLEN
743    {
744        HelpID = "cui:NumericField:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:NF_MIN_WORDLEN" ;
745        Border = TRUE ;
746        Pos = MAP_APPFONT ( 4, 140 ) ;
747        Size = MAP_APPFONT ( 30, 12 ) ;
748        TabStop = TRUE ;
749        Left = TRUE ;
750        Repeat = TRUE ;
751        Spin = TRUE ;
752        Value = 10 ;
753        Minimum = 5 ;
754        First = 5 ;
755        Last = 100 ;
756        Maximum = 100 ;
757        SpinSize = 1 ;
758    };
759    FixedText FT_MAX_ENTRIES
760    {
761        Pos = MAP_APPFONT ( 4, 156 ) ;
762        Size = MAP_APPFONT ( 116, 8 ) ;
763        Text [ en-US ] = "~Max. entries" ;
764    };
765    NumericField NF_MAX_ENTRIES
766    {
767        HelpID = "cui:NumericField:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:NF_MAX_ENTRIES" ;
768        Border = TRUE ;
769        Pos = MAP_APPFONT ( 4, 167 ) ;
770        Size = MAP_APPFONT ( 30, 12 ) ;
771        TabStop = TRUE ;
772        Left = TRUE ;
773        Repeat = TRUE ;
774        Spin = TRUE ;
775        Value = 500 ;
776        Maximum = 10000 ;
777        Last = 10000 ;
778        First = 50 ;
779        Minimum = 50 ;
780        SpinSize = 25 ;
781    };
782    MultiListBox LB_ENTRIES
783    {
784        HelpID = "cui:MultiListBox:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:LB_ENTRIES" ;
785        Pos = MAP_APPFONT ( 127, 3 ) ;
786        Size = MAP_APPFONT ( 121, 158 ) ;
787        TabStop = TRUE ;
788        DropDown = FALSE ;
789        Group = TRUE ;
790        Border = TRUE ;
791        Sort = TRUE ;
792    };
793    PushButton PB_ENTRIES
794    {
795        HelpID = "cui:PushButton:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:PB_ENTRIES" ;
796        Pos = MAP_APPFONT ( 127, 165 ) ;
797        Size = MAP_APPFONT ( 121, 14 ) ;
798        TabStop = TRUE ;
799        Text [ en-US ] = "~Delete Entry" ;
800    };
801    Text [ en-US ] = "Word Completion" ;
802};
803
804
805/**************************************************************************/
806/* Beschreibung: Smart Tag Options                                        */
807/**************************************************************************/
808TabPage RID_OFAPAGE_SMARTTAG_OPTIONS
809{
810    HelpId = HID_OFAPAGE_SMARTTAG_OPTIONS ;
811    OutputSize = TRUE ;
812    Size = MAP_APPFONT ( 260, 185 ) ;
813    SVLook = TRUE ;
814    Hide = TRUE ;
815    Text [ en-US ] = "Smart Tags" ;
816
817    CheckBox CB_SMARTTAGS
818    {
819        HelpID = "cui:CheckBox:RID_OFAPAGE_SMARTTAG_OPTIONS:CB_SMARTTAGS" ;
820        Pos = MAP_APPFONT ( 4, 3 ) ;
821        Size = MAP_APPFONT ( 116, 10 ) ;
822        Text [ en-US ] = "Label text with smart tags" ;
823    };
824
825    FixedText FT_SMARTTAGS
826    {
827        Pos = MAP_APPFONT ( 12, 15 ) ;
828        Size = MAP_APPFONT ( 116, 8 ) ;
829        Text [ en-US ] = "Currently installed smart tags" ;
830    };
831
832    Control LB_SMARTTAGS
833    {
834        Pos = MAP_APPFONT ( 12, 25 ) ;
835        Size = MAP_APPFONT ( 172, 154 ) ;
836        Border = TRUE ;
837        TabStop = TRUE ;
838    };
839
840    PushButton PB_SMARTTAGS
841    {
842        HelpID = "cui:PushButton:RID_OFAPAGE_SMARTTAG_OPTIONS:PB_SMARTTAGS" ;
843        Pos = MAP_APPFONT ( 188, 25 ) ;
844        Size = MAP_APPFONT ( 60, 14 ) ;
845        Text [ en-US ] = "Properties..." ;
846    };
847
848};
849
850// ********************************************************************** EOF
851