1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 * This file is part of the LibreOffice project.
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
11 *   Licensed to the Apache Software Foundation (ASF) under one or more
12 *   contributor license agreements. See the NOTICE file distributed
13 *   with this work for additional information regarding copyright
14 *   ownership. The ASF licenses this file to you under the Apache
15 *   License, Version 2.0 (the "License"); you may not use this file
16 *   except in compliance with the License. You may obtain a copy of
17 *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 -->
19<!DOCTYPE oor:component-schema SYSTEM "../../../../component-schema.dtd">
20<oor:component-schema xmlns:oor="http://openoffice.org/2001/registry" xmlns:xs="http://www.w3.org/2001/XMLSchema" oor:package="org.openoffice.Office" oor:name="Common" xml:lang="en-US">
21  <info>
22    <desc>Contains common settings which are potentially shared by other
23    components.</desc>
24  </info>
25  <templates>
26    <group oor:name="Passwordstorage">
27      <info>
28        <desc>Contains a container for passwords.</desc>
29      </info>
30      <prop oor:name="InitializationVector" oor:type="xs:string">
31        <info>
32          <desc>Contains an initialization vector for the password encryption.</desc>
33        </info>
34      </prop>
35      <prop oor:name="Password" oor:type="xs:string" oor:localized="false">
36        <info>
37          <desc>Contains a password encoded with the master password.</desc>
38        </info>
39      </prop>
40    </group>
41    <group oor:name="HistoryType">
42      <info>
43        <desc>Contains settings for a history entry in the history list.</desc>
44      </info>
45      <prop oor:name="URL" oor:type="xs:string">
46        <info>
47          <desc>Specifies the document URL.</desc>
48        </info>
49      </prop>
50      <prop oor:name="Filter" oor:type="xs:string">
51        <info>
52          <desc>Specifies the filter name that was chosen to load the
53          document.</desc>
54        </info>
55      </prop>
56      <prop oor:name="Title" oor:type="xs:string">
57        <info>
58          <desc>Indicates the title of the URL that is displayed on the
59          user-interface.</desc>
60        </info>
61      </prop>
62      <prop oor:name="Password" oor:type="xs:string">
63        <info>
64          <desc>Contains an encoded password used to open the document.</desc>
65        </info>
66      </prop>
67    </group>
68    <group oor:name="MenuType">
69      <info>
70        <desc>Describes a menu entry for configurable office menus (e.g. file
71        new).</desc>
72      </info>
73      <prop oor:name="URL" oor:type="xs:string">
74        <info>
75          <desc>Specifies the URL for dispatch.</desc>
76        </info>
77      </prop>
78      <prop oor:name="Title" oor:type="xs:string" oor:localized="true">
79        <info>
80          <desc>Specifies the label of a menu entry.</desc>
81        </info>
82      </prop>
83      <prop oor:name="ImageIdentifier" oor:type="xs:string">
84        <info>
85          <desc>Specifies the identifier of an assigned icon.</desc>
86        </info>
87      </prop>
88      <prop oor:name="TargetName" oor:type="xs:string">
89        <info>
90          <desc>Specifies the dispatch target (for example, _blank to open URL
91          in new frame).</desc>
92        </info>
93      </prop>
94    </group>
95    <group oor:name="DialogSize">
96      <info>
97        <desc>Contains the width and height of the dialog size.</desc>
98      </info>
99      <prop oor:name="Height" oor:type="xs:int">
100        <info>
101          <desc>Contains the height of the dialog [UNIT=pixel].</desc>
102        </info>
103      </prop>
104      <prop oor:name="Width" oor:type="xs:int">
105        <info>
106          <desc>Contains the width of the dialog [UNIT=pixel].</desc>
107        </info>
108      </prop>
109    </group>
110    <group oor:name="Font">
111      <info>
112        <desc>Describes the characteristics of a font.</desc>
113      </info>
114      <prop oor:name="Name" oor:type="xs:string">
115        <info>
116          <desc>Specifies the exact name of the font ("Arial", "Courier",
117          "Frutiger").</desc>
118        </info>
119      </prop>
120      <prop oor:name="Height" oor:type="xs:short">
121        <info>
122          <desc>Specifies the height of the font in the measure of the
123          destination.</desc>
124        </info>
125      </prop>
126      <prop oor:name="Width" oor:type="xs:short">
127        <info>
128          <desc>Specifies the width of the font in the measure of the
129          destination.</desc>
130        </info>
131      </prop>
132      <prop oor:name="StyleName" oor:type="xs:string">
133        <info>
134          <desc>Specifies the style name of the font ("Bold", "Italic", "Italic
135          Bold").</desc>
136        </info>
137      </prop>
138      <prop oor:name="Family" oor:type="xs:short">
139        <info>
140          <desc>Specifies the general style of the font.</desc>
141        </info>
142        <constraints>
143          <enumeration oor:value="0">
144            <info>
145              <desc>DONTKNOW</desc>
146            </info>
147          </enumeration>
148          <enumeration oor:value="1">
149            <info>
150              <desc>DECORATIVE</desc>
151            </info>
152          </enumeration>
153          <enumeration oor:value="2">
154            <info>
155              <desc>MODERN</desc>
156            </info>
157          </enumeration>
158          <enumeration oor:value="3">
159            <info>
160              <desc>ROMAN</desc>
161            </info>
162          </enumeration>
163          <enumeration oor:value="4">
164            <info>
165              <desc>SCRIPT</desc>
166            </info>
167          </enumeration>
168          <enumeration oor:value="5">
169            <info>
170              <desc>SWISS</desc>
171            </info>
172          </enumeration>
173          <enumeration oor:value="6">
174            <info>
175              <desc>SYSTEM</desc>
176            </info>
177          </enumeration>
178          <enumeration oor:value="7">
179            <info>
180              <desc>DONTKNOW</desc>
181            </info>
182          </enumeration>
183        </constraints>
184      </prop>
185      <prop oor:name="CharSet" oor:type="xs:short">
186        <info>
187          <desc>Specifies the character set which is supported by the
188          font.</desc>
189        </info>
190        <constraints>
191          <enumeration oor:value="0">
192            <info>
193              <desc>DONTKNOW</desc>
194            </info>
195          </enumeration>
196          <enumeration oor:value="1">
197            <info>
198              <desc>ANSI</desc>
199            </info>
200          </enumeration>
201          <enumeration oor:value="2">
202            <info>
203              <desc>MAC</desc>
204            </info>
205          </enumeration>
206          <enumeration oor:value="3">
207            <info>
208              <desc>IBMPC_437</desc>
209            </info>
210          </enumeration>
211          <enumeration oor:value="4">
212            <info>
213              <desc>IBMPC_850</desc>
214            </info>
215          </enumeration>
216          <enumeration oor:value="5">
217            <info>
218              <desc>IBMPC_860</desc>
219            </info>
220          </enumeration>
221          <enumeration oor:value="6">
222            <info>
223              <desc>IBMPC_861</desc>
224            </info>
225          </enumeration>
226          <enumeration oor:value="7">
227            <info>
228              <desc>IBMPC_863</desc>
229            </info>
230          </enumeration>
231          <enumeration oor:value="8">
232            <info>
233              <desc>IBMPC_865</desc>
234            </info>
235          </enumeration>
236          <enumeration oor:value="9">
237            <info>
238              <desc>SYSTEM</desc>
239            </info>
240          </enumeration>
241          <enumeration oor:value="10">
242            <info>
243              <desc>SYMBOL</desc>
244            </info>
245          </enumeration>
246        </constraints>
247      </prop>
248      <prop oor:name="Pitch" oor:type="xs:short">
249        <info>
250          <desc>Specifies the pitch of the font.</desc>
251        </info>
252        <constraints>
253          <enumeration oor:value="0">
254            <info>
255              <desc>DONTKNOW</desc>
256            </info>
257          </enumeration>
258          <enumeration oor:value="1">
259            <info>
260              <desc>FIXED</desc>
261            </info>
262          </enumeration>
263          <enumeration oor:value="2">
264            <info>
265              <desc>VARIABLE</desc>
266            </info>
267          </enumeration>
268        </constraints>
269      </prop>
270      <prop oor:name="CharacterWidth" oor:type="xs:double">
271        <info>
272          <desc>Specifies the character width. Depending on the specified width,
273          a font that supports this width may be selected. [UNIT=%].</desc>
274        </info>
275      </prop>
276      <prop oor:name="Weight" oor:type="xs:double">
277        <info>
278          <desc>Specifies the thickness of the line.</desc>
279        </info>
280      </prop>
281      <prop oor:name="Slant" oor:type="xs:short">
282        <info>
283          <desc>Specifies if there is a character slant (italic).</desc>
284        </info>
285        <constraints>
286          <enumeration oor:value="0">
287            <info>
288              <desc>NONE</desc>
289            </info>
290          </enumeration>
291          <enumeration oor:value="1">
292            <info>
293              <desc>OBLIQUE</desc>
294            </info>
295          </enumeration>
296          <enumeration oor:value="2">
297            <info>
298              <desc>ITALIC</desc>
299            </info>
300          </enumeration>
301          <enumeration oor:value="3">
302            <info>
303              <desc>DONTKNOW</desc>
304            </info>
305          </enumeration>
306          <enumeration oor:value="4">
307            <info>
308              <desc>REVERSE_OBLIQUE</desc>
309            </info>
310          </enumeration>
311          <enumeration oor:value="5">
312            <info>
313              <desc>REVERSE_ITALIC</desc>
314            </info>
315          </enumeration>
316        </constraints>
317      </prop>
318      <prop oor:name="UnderLine" oor:type="xs:short">
319        <info>
320          <desc>Specifies the type of underline.</desc>
321        </info>
322        <constraints>
323          <enumeration oor:value="0">
324            <info>
325              <desc>NONE</desc>
326            </info>
327          </enumeration>
328          <enumeration oor:value="1">
329            <info>
330              <desc>SINGLE</desc>
331            </info>
332          </enumeration>
333          <enumeration oor:value="2">
334            <info>
335              <desc>DOUBLE</desc>
336            </info>
337          </enumeration>
338          <enumeration oor:value="3">
339            <info>
340              <desc>DOTTED</desc>
341            </info>
342          </enumeration>
343          <enumeration oor:value="4">
344            <info>
345              <desc>DONTKNOW</desc>
346            </info>
347          </enumeration>
348          <enumeration oor:value="5">
349            <info>
350              <desc>DASH</desc>
351            </info>
352          </enumeration>
353          <enumeration oor:value="6">
354            <info>
355              <desc>LONGDASH</desc>
356            </info>
357          </enumeration>
358          <enumeration oor:value="7">
359            <info>
360              <desc>DASHDOT</desc>
361            </info>
362          </enumeration>
363          <enumeration oor:value="8">
364            <info>
365              <desc>DASHDOTDOT</desc>
366            </info>
367          </enumeration>
368          <enumeration oor:value="9">
369            <info>
370              <desc>SMALLWAVE</desc>
371            </info>
372          </enumeration>
373          <enumeration oor:value="10">
374            <info>
375              <desc>WAVE</desc>
376            </info>
377          </enumeration>
378          <enumeration oor:value="11">
379            <info>
380              <desc>DOUBLEWAVE</desc>
381            </info>
382          </enumeration>
383          <enumeration oor:value="12">
384            <info>
385              <desc>BOLD</desc>
386            </info>
387          </enumeration>
388          <enumeration oor:value="13">
389            <info>
390              <desc>BOLDDOTTED</desc>
391            </info>
392          </enumeration>
393          <enumeration oor:value="14">
394            <info>
395              <desc>BOLDDASH</desc>
396            </info>
397          </enumeration>
398          <enumeration oor:value="15">
399            <info>
400              <desc>BOLDLONGDASH</desc>
401            </info>
402          </enumeration>
403          <enumeration oor:value="16">
404            <info>
405              <desc>BOLDDASHDOT</desc>
406            </info>
407          </enumeration>
408          <enumeration oor:value="17">
409            <info>
410              <desc>BOLDDASHDOTDOT</desc>
411            </info>
412          </enumeration>
413          <enumeration oor:value="18">
414            <info>
415              <desc>BOLDWAVE</desc>
416            </info>
417          </enumeration>
418        </constraints>
419      </prop>
420      <prop oor:name="Strikeout" oor:type="xs:short">
421        <info>
422          <desc>Specifies the type of strikeout.</desc>
423        </info>
424        <constraints>
425          <enumeration oor:value="0">
426            <info>
427              <desc>NONE</desc>
428            </info>
429          </enumeration>
430          <enumeration oor:value="1">
431            <info>
432              <desc>SINGLE</desc>
433            </info>
434          </enumeration>
435          <enumeration oor:value="2">
436            <info>
437              <desc>DOUBLE</desc>
438            </info>
439          </enumeration>
440          <enumeration oor:value="3">
441            <info>
442              <desc>DONTKNOW</desc>
443            </info>
444          </enumeration>
445          <enumeration oor:value="4">
446            <info>
447              <desc>BOLD</desc>
448            </info>
449          </enumeration>
450          <enumeration oor:value="5">
451            <info>
452              <desc>SLASH</desc>
453            </info>
454          </enumeration>
455          <enumeration oor:value="6">
456            <info>
457              <desc>X</desc>
458            </info>
459          </enumeration>
460        </constraints>
461      </prop>
462      <prop oor:name="Orientation" oor:type="xs:double">
463        <info>
464          <desc>Specifies the rotation of the font. [UNIT=degree].</desc>
465        </info>
466      </prop>
467      <prop oor:name="Kerning" oor:type="xs:boolean">
468        <info>
469          <desc>Specifies if a kerning table is available (for requesting). For
470          selecting, specifies if the kerning table is to be used.</desc>
471        </info>
472      </prop>
473      <prop oor:name="WordLineMode" oor:type="xs:boolean">
474        <info>
475          <desc>Specifies if only words get underlined.</desc>
476        </info>
477      </prop>
478      <prop oor:name="Type" oor:type="xs:short">
479        <info>
480          <desc>Specifies the technology of the font representation.</desc>
481        </info>
482        <constraints>
483          <enumeration oor:value="0">
484            <info>
485              <desc>DONTKNOW</desc>
486            </info>
487          </enumeration>
488          <enumeration oor:value="1">
489            <info>
490              <desc>RASTER</desc>
491            </info>
492          </enumeration>
493          <enumeration oor:value="2">
494            <info>
495              <desc>DEVICE</desc>
496            </info>
497          </enumeration>
498          <enumeration oor:value="3">
499            <info>
500              <desc>SCALABLE</desc>
501            </info>
502          </enumeration>
503        </constraints>
504      </prop>
505    </group>
506    <group oor:name="FontReplacement">
507      <info>
508        <desc>Contains settings for the font replacement.</desc>
509      </info>
510      <prop oor:name="ReplaceFont" oor:type="xs:string">
511        <info>
512          <desc>Contains the name of font that is to be replaced.</desc>
513        </info>
514      </prop>
515      <prop oor:name="SubstituteFont" oor:type="xs:string">
516        <info>
517          <desc>Contains the name of the replacing font.</desc>
518        </info>
519      </prop>
520      <prop oor:name="OnScreenOnly" oor:type="xs:boolean" oor:nillable="false">
521        <info>
522          <desc>Determines if the font pair replacement is applied on the
523          screen.</desc>
524        </info>
525        <value>false</value>
526      </prop>
527      <prop oor:name="Always" oor:type="xs:boolean" oor:nillable="false">
528        <info>
529          <desc>Determines if the font pair replacement is applied on the
530          printer.</desc>
531        </info>
532        <value>false</value>
533      </prop>
534    </group>
535    <group oor:name="GraphicSize">
536      <info>
537        <deprecated>Use LogicalGraphicSize instead of this.</deprecated>
538        <desc>Specifies the size of a graphic. [UNIT=1/100 mm].</desc>
539      </info>
540      <prop oor:name="Width" oor:type="xs:int" oor:nillable="false">
541        <info>
542          <desc>Specifies the width of graphic. [UNIT=1/100 mm].</desc>
543        </info>
544        <constraints>
545          <minInclusive oor:value="100">
546            <info>
547              <desc>Represents the highest value that can be entered in the
548              dialog.</desc>
549            </info>
550          </minInclusive>
551          <maxInclusive oor:value="99999">
552            <info>
553              <desc>Represents the lowest value that can be entered in the
554              dialog.</desc>
555            </info>
556          </maxInclusive>
557        </constraints>
558        <value>10000</value>
559      </prop>
560      <prop oor:name="Height" oor:type="xs:int" oor:nillable="false">
561        <info>
562          <desc>Specifies the height of graphic. [UNIT=1/100 mm].</desc>
563        </info>
564        <constraints>
565          <minInclusive oor:value="100">
566            <info>
567              <desc>Represents the lowest value that can be entered in the
568              dialog.</desc>
569            </info>
570          </minInclusive>
571          <maxInclusive oor:value="99999">
572            <info>
573              <desc>Represents the highest value that can be entered in the
574              dialog.</desc>
575            </info>
576          </maxInclusive>
577        </constraints>
578        <value>10000</value>
579      </prop>
580    </group>
581    <group oor:name="LogicalGraphicSize">
582      <info>
583        <desc>Specifies the logical size of a graphic. [UNIT=1/100 mm].</desc>
584      </info>
585      <prop oor:name="LogicalWidth" oor:type="xs:int" oor:nillable="false">
586        <info>
587          <desc>Specifies the logical width of a graphic.
588          [UNIT=1/100 mm].</desc>
589        </info>
590        <constraints>
591          <minInclusive oor:value="100">
592            <info>
593              <desc>Represents the lowest value that can be entered in the
594              dialog.</desc>
595            </info>
596          </minInclusive>
597          <maxInclusive oor:value="99999">
598            <info>
599              <desc>Represents the highest value that can be entered in the
600              dialog.</desc>
601            </info>
602          </maxInclusive>
603        </constraints>
604        <value>10000</value>
605      </prop>
606      <prop oor:name="LogicalHeight" oor:type="xs:int" oor:nillable="false">
607        <info>
608          <desc>Specifies the logical height of graphic. [UNIT=1/100 mm].</desc>
609        </info>
610        <constraints>
611          <minInclusive oor:value="100">
612            <info>
613              <desc>Represents the lowest value that can be entered in the
614              dialog.</desc>
615            </info>
616          </minInclusive>
617          <maxInclusive oor:value="99999">
618            <info>
619              <desc>Represents the highest value that can be entered in the
620              dialog.</desc>
621            </info>
622          </maxInclusive>
623        </constraints>
624        <value>10000</value>
625      </prop>
626    </group>
627    <group oor:name="ObjectNames">
628      <info>
629        <deprecated>Replaced by
630        org.openoffice.Office.Embedding/ObjectName.</deprecated>
631        <desc>Deprecated</desc>
632      </info>
633      <prop oor:name="Name" oor:type="xs:string" oor:localized="true">
634        <info>
635          <deprecated/>
636          <desc>Deprecated</desc>
637        </info>
638      </prop>
639      <prop oor:name="Key" oor:type="xs:string">
640        <info>
641          <deprecated/>
642          <desc>Deprecated</desc>
643        </info>
644      </prop>
645    </group>
646    <group oor:name="RecoveryEntry">
647      <info>
648        <desc>Specifies an entry of the recovery list which is then used by
649        CrashGuard to save information about the last opened files.</desc>
650      </info>
651      <prop oor:name="URL" oor:type="xs:string">
652        <info>
653          <desc>Specifies a URL that should be recovered after the next Office
654          start.</desc>
655        </info>
656      </prop>
657      <prop oor:name="Filter" oor:type="xs:string">
658        <info>
659          <desc>Specifies a filter that should be used to open the document
660          referenced by the URL property.</desc>
661        </info>
662      </prop>
663      <prop oor:name="TempName" oor:type="xs:string">
664        <info>
665          <desc>Contains the name of the temporary file which represents the
666          document.</desc>
667        </info>
668      </prop>
669    </group>
670    <group oor:name="StartEndCharacters">
671      <info>
672        <desc>Contains the characters (so called forbidden characters) that are
673        not allowed at the beginning or end of a line.</desc>
674      </info>
675      <prop oor:name="StartCharacters" oor:type="xs:string">
676        <info>
677          <desc>Contains the characters that are not allowed at the beginning of
678          a line.</desc>
679        </info>
680      </prop>
681      <prop oor:name="EndCharacters" oor:type="xs:string">
682        <info>
683          <desc>Contains the characters that are not allowed at the end of a
684          line.</desc>
685        </info>
686      </prop>
687    </group>
688    <group oor:name="NameCounter">
689      <info>
690        <desc>Stores an association between a numeric value and a name.</desc>
691      </info>
692      <prop oor:name="Name" oor:type="xs:string">
693        <info>
694          <desc>Specifies a name that is associated with a counter.</desc>
695        </info>
696      </prop>
697      <prop oor:name="Counter" oor:type="xs:int">
698        <info>
699          <desc>Specifies a number that is associated with a name.</desc>
700        </info>
701      </prop>
702    </group>
703    <group oor:name="JobDescription">
704      <info>
705        <deprecated>Use cfg package Jobs instead of this.</deprecated>
706        <desc>Use cfg package Jobs instead of this.</desc>
707      </info>
708      <prop oor:name="ServiceName" oor:type="xs:string">
709        <info>
710          <desc>Use cfg package Jobs instead of this.</desc>
711        </info>
712      </prop>
713      <prop oor:name="UserInteraction" oor:type="xs:boolean">
714        <info>
715          <desc>Use cfg package Jobs instead of this.</desc>
716        </info>
717      </prop>
718      <prop oor:name="AllowAsync" oor:type="xs:boolean">
719        <info>
720          <desc>Use cfg package Jobs instead of this.</desc>
721        </info>
722      </prop>
723      <group oor:name="ExecutionArguments" oor:extensible="true">
724        <info>
725          <desc>Use cfg package Jobs instead of this.</desc>
726        </info>
727      </group>
728    </group>
729    <group oor:name="TrustedAuthor">
730      <info>
731        <desc>All Certificate information needed to handle and identify the
732        signature.</desc>
733      </info>
734      <prop oor:name="SubjectName" oor:type="xs:string">
735        <info>
736          <desc>Subject name of Certificate.</desc>
737        </info>
738      </prop>
739      <prop oor:name="SerialNumber" oor:type="xs:string">
740        <info>
741          <desc>Serial Number of Certificate.</desc>
742        </info>
743      </prop>
744      <prop oor:name="RawData" oor:type="xs:string">
745        <info>
746          <desc>Raw of Certificate.</desc>
747        </info>
748      </prop>
749    </group>
750    <group oor:name="ApplicationControlLayout">
751      <info>
752        <desc>specifies, on a per-application-type basis, certain defaults for
753        layouting form controls</desc>
754      </info>
755      <prop oor:name="VisualEffect" oor:type="xs:string" oor:nillable="true">
756        <info>
757          <desc>specifies the default visual effect for form controls</desc>
758        </info>
759        <constraints>
760          <enumeration oor:value="none">
761            <info>
762              <desc>specifies no special visual effect</desc>
763            </info>
764          </enumeration>
765          <enumeration oor:value="flat">
766            <info>
767              <desc>specifies a flat appearance</desc>
768            </info>
769          </enumeration>
770          <enumeration oor:value="3D">
771            <info>
772              <desc>specifies a 3D appearance</desc>
773            </info>
774          </enumeration>
775        </constraints>
776      </prop>
777      <prop oor:name="DynamicBorderColors" oor:type="xs:boolean" oor:nillable="false">
778        <info>
779          <desc>specifies whether the controls should use dynamic border
780          coloring, if possible. Dymamic border coloring means that when the
781          mouse is hovered over a control, and when a control receives the
782          focus, this is indicated with special border colors.</desc>
783        </info>
784        <value>false</value>
785      </prop>
786      <prop oor:name="UseDocumentTextMetrics" oor:type="xs:boolean" oor:nillable="false">
787        <info>
788          <desc>controls whether form controls, when they render their text, use
789          the same metrics as the document does. If this is set to &lt;true&gt;,
790          then the control text's appearance better matches the text in the
791          surrounding document.&lt;/p&gt; &lt;p&gt;Technically, documents use a
792          reference device for formatting, which usually has a higher resolution
793          than the actual output device. The option decides whether form
794          controls should use the same reference device as the surrounding
795          document. However, some of OOo's document implementations do not
796          properly use their reference device in all situations, in which case
797          the option might better be disabled.&lt;p&gt;</desc>
798        </info>
799        <value>true</value>
800      </prop>
801    </group>
802    <group oor:name="ProductVersionID">
803      <info>
804        <desc>Stores registration data which is related to a specific product
805        version.</desc>
806      </info>
807      <prop oor:name="InstanceUUID" oor:type="xs:string" oor:nillable="false">
808        <info>
809          <desc>An instance UUID associated with the product version ID.</desc>
810        </info>
811        <value/>
812      </prop>
813    </group>
814    <group oor:name="PersonasEntry">
815      <info>
816        <desc>Stores the details of the installed personas.</desc>
817      </info>
818      <prop oor:name="Slug" oor:type="xs:string" oor:nillable="false">
819        <info>
820          <desc>Unique pretty id of the persona, also part of its url</desc>
821        </info>
822      </prop>
823      <prop oor:name="Name" oor:type="xs:string" oor:nillable="false">
824        <info>
825          <desc>The Persona's name</desc>
826        </info>
827      </prop>
828      <prop oor:name="Preview" oor:type="xs:string" oor:nillable="false">
829        <info>
830          <desc>Name of the preview file for the Persona to show in the UI</desc>
831        </info>
832      </prop>
833      <prop oor:name="Header" oor:type="xs:string" oor:nillable="false">
834        <info>
835          <desc>Name of the header file for the Persona</desc>
836        </info>
837        <value/>
838      </prop>
839      <prop oor:name="Footer" oor:type="xs:string" oor:nillable="false">
840        <info>
841          <desc>Name of the footer file for the Persona</desc>
842        </info>
843        <value/>
844      </prop>
845      <prop oor:name="TextColor" oor:type="xs:string" oor:nillable="false">
846        <info>
847          <desc>Value of the text color for the Persona</desc>
848        </info>
849        <value/>
850      </prop>
851    </group>
852    <group oor:name="LastDirectory">
853      <info>
854        <desc>Stores the last selected directory for the filepicker for different contexts.</desc>
855      </info>
856      <prop oor:name="LastPath" oor:type="xs:string" oor:nillable="false">
857        <info>
858          <desc>The last used path for this context (context is the name of the parent node)</desc>
859        </info>
860      </prop>
861    </group>
862  </templates>
863  <component>
864    <group oor:name="VCL">
865      <info>
866        <desc>Contains settings for VCL.</desc>
867      </info>
868      <prop oor:name="DisableOpenGL" oor:type="xs:boolean" oor:nillable="false">
869        <info>
870           <desc>Specifies if all OpenGL usage should be disabled.</desc>
871        </info>
872        <value>false</value>
873      </prop>
874      <prop oor:name="UseSkia" oor:type="xs:boolean" oor:nillable="false">
875        <info>
876           <desc>Specifies if Skia rendering should be used in VCL backends
877                supporting it.</desc>
878        </info>
879        <value>false</value>
880      </prop>
881      <prop oor:name="ForceSkia" oor:type="xs:boolean" oor:nillable="false">
882        <info>
883           <desc>Specifies if Skia rendering should be used in VCL backends
884               supporting it. This one forces the use of Skia even if the
885                denylist would block the driver.</desc>
886        </info>
887        <value>false</value>
888      </prop>
889      <prop oor:name="ForceSkiaRaster" oor:type="xs:boolean" oor:nillable="false">
890        <info>
891           <desc>Specifies if Skia rendering should be used in VCL backends
892               supporting it. This one forces the use of Skia software rendering
893               instead of trying to use the graphics driver.</desc>
894        </info>
895        <value>false</value>
896      </prop>
897      <prop oor:name="AnimationsEnabled" oor:type="xs:boolean" oor:nillable="false">
898        <info>
899          <desc>Defines if the user interface animations (like "walking ant"
900          animation when copying a cell in Calc) is enabled or disabled.
901          Disabling animations makes a lot of sense on remote connections
902          (VNC), where animations increase the (always limited) amount of
903          bandwidth needed.
904          </desc>
905          <label>Defines if the user interface animations are disabled.</label>
906        </info>
907        <value>true</value>
908      </prop>
909      <prop oor:name="ReduceTransparencyMinArea" oor:type="xs:int" oor:nillable="false">
910        <info>
911           <desc>Specifies minimal area of an object for applying "Reduce Transparency"
912           printer configuration option (removing object transparency). This value
913           is counted in percents of the printable area.</desc>
914        </info>
915        <value>25</value>
916      </prop>
917      <prop oor:name="PDFExportImageCacheSize" oor:type="xs:int" oor:nillable="false">
918        <info>
919           <desc>Specifies number of PDF image instances to cache on
920           export - can save potentially huge amount of CPU time on
921           re-compressing the same JPEG image over and over again.</desc>
922        </info>
923        <value>15</value>
924      </prop>
925    </group>
926    <group oor:name="InternalMSExport">
927      <info>
928        <desc>Contains internal MSExport settings that are common for all
929        apps.</desc>
930      </info>
931      <prop oor:name="UseOldExport" oor:type="xs:boolean" oor:nillable="false">
932        <info>
933          <desc>Specifies if an old (5.0 format) way instead of a new one (6.0
934          OLE embedded document) should be used for export of inplace objects in
935          case MS-filters are not used for them.</desc>
936        </info>
937        <value>false</value>
938      </prop>
939    </group>
940    <group oor:name="Passwords">
941      <info>
942        <desc>Contains a description of the persistent password
943        container.</desc>
944      </info>
945      <prop oor:name="UseStorage" oor:type="xs:boolean" oor:nillable="false">
946        <info>
947          <desc>Specifies if passwords can be stored persistently.</desc>
948        </info>
949        <value>false</value>
950      </prop>
951      <prop oor:name="StorageVersion" oor:type="xs:int" oor:nillable="false">
952        <info>
953          <desc>Specifies what version of encoding scheme the password container uses.</desc>
954        </info>
955        <value>0</value>
956      </prop>
957      <prop oor:name="HasMaster" oor:type="xs:boolean" oor:nillable="false">
958        <info>
959          <desc>Specifies if there is a valid master password.</desc>
960        </info>
961        <value>false</value>
962      </prop>
963      <prop oor:name="MasterInitializationVector" oor:type="xs:string">
964        <info>
965          <desc>Contains an initialization vector for the master password encryption.</desc>
966        </info>
967      </prop>
968      <prop oor:name="Master" oor:type="xs:string" oor:nillable="false">
969        <info>
970          <desc>Contains the master password encrypted by itself.</desc>
971        </info>
972        <value/>
973      </prop>
974      <set oor:name="Store" oor:node-type="Passwordstorage">
975        <info>
976          <desc>Contains a list of passwords encoded with the master
977          password.</desc>
978        </info>
979      </set>
980      <prop oor:name="AuthenticateUsingSystemCredentials" oor:type="oor:string-list">
981        <info>
982          <desc>Contains a list of URLs that should be accessed using system
983          credentials of the user.</desc>
984        </info>
985      </prop>
986      <prop oor:name="TrySystemCredentialsFirst" oor:type="xs:boolean" oor:nillable="false">
987        <info>
988          <desc>Specifies if authentication using system credentials should be tried
989          automatically for all resources that support it (regardless of whether they are
990          in "AuthenticateUsingSystemCredentials" list or not).</desc>
991        </info>
992        <value>false</value>
993      </prop>
994    </group>
995    <group oor:name="Dictionaries">
996      <info>
997        <desc>Contains settings related to dictionaries.</desc>
998      </info>
999      <prop oor:name="RepositoryURL" oor:type="xs:string" oor:nillable="false">
1000        <info>
1001          <desc>Specifies a repository URL where users can download additional
1002          dictionaries.</desc>
1003        </info>
1004        <value/>
1005      </prop>
1006    </group>
1007    <group oor:name="Drawinglayer">
1008      <info>
1009        <desc>Specifies settings for the Drawinglayer.</desc>
1010      </info>
1011      <prop oor:name="OverlayBuffer" oor:type="xs:boolean" oor:nillable="false">
1012        <info>
1013          <desc>Specifies if the Overlay pane is allowed to use an own buffer.
1014          If on, Overlay is fast but a buffer (graphics memory) is used. If off,
1015          Overlay is slow, but no Buffer is needed. This is the global switch
1016          which will enable/disable overlay for all Applications. This is the
1017          global switch for the whole office.</desc>
1018          <label>Overlay is allowed to use a Background Buffer in all
1019          Applications</label>
1020        </info>
1021        <value>true</value>
1022      </prop>
1023      <prop oor:name="OverlayBuffer_Calc" oor:type="xs:boolean" oor:nillable="false">
1024        <info>
1025          <desc>Similar to OverlayBuffer, but only for Calc Application</desc>
1026          <label>Calc Overlay is allowed to use a Background Buffer</label>
1027        </info>
1028        <value>true</value>
1029      </prop>
1030      <prop oor:name="OverlayBuffer_Writer" oor:type="xs:boolean" oor:nillable="false">
1031        <info>
1032          <desc>Similar to OverlayBuffer, but only for Writer Application</desc>
1033          <label>Writer Overlay is allowed to use a Background Buffer</label>
1034        </info>
1035        <value>true</value>
1036      </prop>
1037      <prop oor:name="OverlayBuffer_DrawImpress" oor:type="xs:boolean" oor:nillable="false">
1038        <info>
1039          <desc>Similar to OverlayBuffer, but only for Draw/Impress
1040          Applications</desc>
1041          <label>Draw/Impress Overlay is allowed to use a Background
1042          Buffer</label>
1043        </info>
1044        <value>true</value>
1045      </prop>
1046      <prop oor:name="PaintBuffer" oor:type="xs:boolean" oor:nillable="false">
1047        <info>
1048          <desc>Specifies if the Application Repaint shall use a buffer for
1049          Pre-Rendering. If on, screen flicker is greatly reduced and remote
1050          display is fast, but a buffer (graphics memory) is needed. If off,
1051          screen flicker will occur and remote display is slow, but no buffer
1052          is needed. This is the global switch for the whole office.</desc>
1053          <label>Application Repaint is allowed to use Pre-Rendering
1054          Buffer.</label>
1055        </info>
1056        <value>true</value>
1057      </prop>
1058      <prop oor:name="PaintBuffer_Calc" oor:type="xs:boolean" oor:nillable="false">
1059        <info>
1060          <desc>Similar to PaintBuffer, but only for Calc Application.
1061          PaintBuffer is the global switch.</desc>
1062          <label>Calc Repaint is allowed to use Pre-Rendering Buffer</label>
1063        </info>
1064        <value>true</value>
1065      </prop>
1066      <prop oor:name="PaintBuffer_Writer" oor:type="xs:boolean" oor:nillable="false">
1067        <info>
1068          <desc>Similar to PaintBuffer, but only for Writer Application.
1069          PaintBuffer is the global switch.</desc>
1070          <label>Writer Repaint is allowed to use Pre-Rendering Buffer</label>
1071        </info>
1072        <value>true</value>
1073      </prop>
1074      <prop oor:name="PaintBuffer_DrawImpress" oor:type="xs:boolean" oor:nillable="false">
1075        <info>
1076          <desc>Similar to PaintBuffer, but only for Draw/Impress Applications.
1077          PaintBuffer is the global switch.</desc>
1078          <label>Draw/Impress Repaint is allowed to use Pre-Rendering
1079          Buffer</label>
1080        </info>
1081        <value>true</value>
1082      </prop>
1083      <prop oor:name="StripeColorA" oor:type="xs:int" oor:nillable="false">
1084        <info>
1085          <desc>Specifies the first one of two colors used from overlay to
1086          display striped lines as helplines. Default is black.</desc>
1087          <label>Use given color as first stripe color</label>
1088        </info>
1089        <value>0</value>
1090      </prop>
1091      <prop oor:name="StripeColorB" oor:type="xs:int" oor:nillable="false">
1092        <info>
1093          <desc>Specifies the second one of two colors used from overlay to
1094          display striped lines as helplines. Default is white.</desc>
1095          <label>Use given color as second stripe color</label>
1096        </info>
1097        <value>16777215</value>
1098      </prop>
1099      <prop oor:name="StripeLength" oor:type="xs:short" oor:nillable="false">
1100        <info>
1101          <desc>Specifies the length in pixels of a single stripe used from
1102          overlay to display striped lines as helplines. Default is four.</desc>
1103          <label>Use given length as stripe length</label>
1104        </info>
1105        <value>4</value>
1106      </prop>
1107      <prop oor:name="MaximumPaperWidth" oor:type="xs:int" oor:nillable="false">
1108        <info>
1109          <desc>Specifies the maximum allowed Paper Width for page definitions
1110          in cm. Default is 6m, i.e. 600 cm. When this is changed to higher
1111          values, it is done on own risk.</desc>
1112          <label>Maximum allowed Paper Width for page definitions</label>
1113        </info>
1114        <value>600</value>
1115      </prop>
1116      <prop oor:name="MaximumPaperHeight" oor:type="xs:int" oor:nillable="false">
1117        <info>
1118          <desc>Specifies the maximum allowed Paper Height for page definitions
1119          in cm. Default is 6m, i.e. 600 cm. When this is changed to higher
1120          values, it is done on own risk.</desc>
1121          <label>Maximum allowed Paper Height for page definitions</label>
1122        </info>
1123        <value>600</value>
1124      </prop>
1125      <prop oor:name="MaximumPaperLeftMargin" oor:type="xs:int" oor:nillable="false">
1126        <info>
1127          <desc>Specifies the maximum allowed Left Margin for the page
1128          definitions in 1/100th cm.</desc>
1129          <label>Maximum allowed Left margin for page definitions</label>
1130        </info>
1131        <value>9999</value>
1132      </prop>
1133      <prop oor:name="MaximumPaperRightMargin" oor:type="xs:int" oor:nillable="false">
1134        <info>
1135          <desc>Specifies the maximum allowed Right Margin for the page
1136          definitions in 1/100th cm.</desc>
1137          <label>Maximum allowed Right margin for page definitions</label>
1138        </info>
1139        <value>9999</value>
1140      </prop>
1141      <prop oor:name="MaximumPaperTopMargin" oor:type="xs:int" oor:nillable="false">
1142        <info>
1143          <desc>Specifies the maximum allowed Top Margin for the page
1144          definitions in 1/100th cm.</desc>
1145          <label>Maximum allowed Top margin for page definitions</label>
1146        </info>
1147        <value>9999</value>
1148      </prop>
1149      <prop oor:name="MaximumPaperBottomMargin" oor:type="xs:int" oor:nillable="false">
1150        <info>
1151          <desc>Specifies the maximum allowed Bottom Margin for the page
1152          definitions in 1/100th cm.</desc>
1153          <label>Maximum allowed Bottom margin for page definitions</label>
1154        </info>
1155        <value>9999</value>
1156      </prop>
1157      <prop oor:name="AntiAliasing" oor:type="xs:boolean" oor:nillable="false">
1158        <info>
1159          <desc>This switch allows to switch DrawingLayer based views to be
1160          rendered using AntiAliasing or not. Of course this takes only effect
1161          when AntiAliasing is supported for the System OOo is running
1162          on.</desc>
1163          <label>This switch determines if DrawingLayer based views use
1164          AntiAliasing.</label>
1165        </info>
1166        <value>true</value>
1167      </prop>
1168      <prop oor:name="SnapHorVerLinesToDiscrete" oor:type="xs:boolean" oor:nillable="false">
1169        <info>
1170          <desc>This switch allows to enhance visualisation of graphics which
1171          use Horizontal or Vertical Hairlines combined with AntiAliased mode
1172          (e.g. in 2D charts). When not used, those lines will be AntiAliased as
1173          everything else. Since this is not pleasing for the eye, this option
1174          allows to force those lines to snap to discrete points (pixels) when
1175          activated and thus avoids AntiAliasing of pure Horizontal or Vertical
1176          Hairlines.</desc>
1177          <label>Determines if Horizontal and Vertical HairLines in AntiAliased
1178          mode are snapped to discrete pixels to enhance visualisation</label>
1179        </info>
1180        <value>true</value>
1181      </prop>
1182      <prop oor:name="RenderDecoratedTextDirect" oor:type="xs:boolean" oor:nillable="false">
1183        <info>
1184          <desc>This switch determines if the decorations of decorated text
1185          portions (e.g. underline, strike through) are rendered using VCL
1186          direct rendering or if the primitive is decomposed into simple text
1187          and the corresponding geometrical representations of the decorations.
1188          Default is true since VCL's usage of the diverse System's hinting
1189          possibilities for decorations is useful.</desc>
1190          <label>Determines if decorated texts are decomposed at render time or
1191          directly rendered using VCL</label>
1192        </info>
1193        <value>true</value>
1194      </prop>
1195      <prop oor:name="RenderSimpleTextDirect" oor:type="xs:boolean" oor:nillable="false">
1196        <info>
1197          <desc>This switch determines if simple text is directly rendered using
1198          VCL or not. If not, the simple text is decomposed into PolyPolygons
1199          which will be painted then. Default is true, since VCL will use the
1200          hinting for font rendering on the diverse supported systems, which
1201          gives better quality than rendering the text as Polygons.</desc>
1202          <label>Determines if simple texts are decomposed at render time or
1203          directly rendered using VCL</label>
1204        </info>
1205        <value>true</value>
1206      </prop>
1207      <prop oor:name="SolidDragCreate" oor:type="xs:boolean" oor:nillable="false">
1208        <info>
1209          <desc>This switch decides if Interactions in the DrawingLayer are
1210          visualized using Wireframe or Full-Object previews. If false, only
1211          Wireframe will be used. If true, Full-Object preview which gives a
1212          much better feedback about the object interaction will be used. This
1213          mode is used for modification and creation of objects. During
1214          interaction, a geometric copy of the object(s) is shown with 50%
1215          transparence in the foreground. That copy shows exactly what You will
1216          get when You end the interaction.</desc>
1217          <label>This switch determines if DrawingLayer Interactions show
1218          Wireframe or Full-Object preview.</label>
1219        </info>
1220        <value>true</value>
1221      </prop>
1222      <prop oor:name="Quadratic3DRenderLimit" oor:type="xs:int" oor:nillable="false">
1223        <info>
1224          <desc>This defines a Limitation for the default raster conversion from
1225          3D Scenes to Bitmaps. The number is the maximum number of pixels to
1226          use, e.g. 1000x1000 Pixels is allowed as default. When Scenes would
1227          need more Pixels than this, the Bitmap will be limited and scaled to
1228          the needed pixel size at paint time.</desc>
1229          <label>A Pixel limitation for the creation of 3D Scenes with the
1230          default renderer.</label>
1231        </info>
1232        <value>1000000</value>
1233      </prop>
1234      <prop oor:name="QuadraticFormControlRenderLimit" oor:type="xs:int" oor:nillable="false">
1235        <info>
1236          <desc>This defines a Limitation for the default raster conversion of
1237          FormControls in edit mode. These have the ability to be displayed
1238          using this fallback to Bitmaps. The number is the maximum number of
1239          pixels to use, e.g. 300x150 Pixels is allowed as default. When
1240          FormControls would need more Pixels than this, the Bitmap will be
1241          limited and scaled to the needed pixel size at paint time.</desc>
1242          <label>A Pixel limitation for the creation of FormControl fallback
1243          display.</label>
1244        </info>
1245        <value>45000</value>
1246      </prop>
1247      <prop oor:name="TransparentSelection" oor:type="xs:boolean" oor:nillable="false">
1248        <info>
1249          <desc>This switch defines if the selections in the applications (text
1250          or cells) are visualized using inverse (XOR) when set to false (the
1251          old selection method, also used when in HighContrast mode) or a
1252          transparent overlay selection using the system's selection
1253          color.</desc>
1254          <label>This switch defines if for text/cell selections the old
1255          inverse or the new transparent selection is to be used.</label>
1256        </info>
1257        <value>true</value>
1258      </prop>
1259      <prop oor:name="TransparentSelectionPercent" oor:type="xs:short" oor:nillable="false">
1260        <info>
1261          <desc>Specifies the degree of transparence to be used when transparent
1262          selection is used. The value is a percent value. Since neither no
1263          transparence nor complete transparence makes sense, the value is
1264          limited to a range of 10% - 90%. If the given value is outside this
1265          range, it is cropped to it.</desc>
1266          <label>Specifies the percent of transparence to use if transparent
1267          selection is used.</label>
1268        </info>
1269        <value>75</value>
1270      </prop>
1271      <prop oor:name="SelectionMaximumLuminancePercent" oor:type="xs:short" oor:nillable="false">
1272        <info>
1273          <desc>Specifies the maximum allowed luminance the system's selection
1274          color may have. When the colorfetched from the system is brighter
1275          (luminance is bigger), it will be scaled to a luminance of exactly
1276          this given value.</desc>
1277          <label>Specifies the maximum allowed luminance for the system's
1278          selection color.</label>
1279        </info>
1280        <value>70</value>
1281      </prop>
1282    </group>
1283    <group oor:name="AutoCorrect">
1284      <info>
1285        <desc>Contains miscellaneous settings for the auto correction.</desc>
1286      </info>
1287      <prop oor:name="UseReplacementTable" oor:type="xs:boolean" oor:nillable="false">
1288        <!-- UIHints: Tools  AutoCorrect/AutoFormat  Options - Use replacement
1289             table -->
1290        <info>
1291          <desc>Specifies if the replacement table should be used to replace
1292          letter combinations with defined text</desc>
1293          <label>Use replacement table</label>
1294        </info>
1295        <value>true</value>
1296      </prop>
1297      <prop oor:name="TwoCapitalsAtStart" oor:type="xs:boolean" oor:nillable="false">
1298        <!-- UIHints: Tools  AutoCorrect/AutoFormat  Options - Correct TWo
1299             INitial Capitals -->
1300        <info>
1301          <desc>Specifies if two initial capitals should be corrected
1302          automatically.</desc>
1303          <label>Correct two initial capitals</label>
1304        </info>
1305        <value>true</value>
1306      </prop>
1307      <prop oor:name="CapitalAtStartSentence" oor:type="xs:boolean" oor:nillable="false">
1308        <!-- UIHints: Tools  AutoCorrect/AutoFormat  Options - Capitalize first
1309             letter of every sentence -->
1310        <info>
1311          <desc>Specifies if the letter at the beginning of a sentence should be
1312          capitalized automatically.</desc>
1313          <label>Capitalize first letter of every sentence</label>
1314        </info>
1315        <value>true</value>
1316      </prop>
1317      <prop oor:name="ChangeUnderlineWeight" oor:type="xs:boolean" oor:nillable="false">
1318        <!-- UIHints: Tools  AutoCorrect/AutoFormat  Options - Automatic *bold*,
1319             /italic/, -strikeout- and _underline_ -->
1320        <info>
1321          <desc>Specifies if text should be formatted in bold or underlined when
1322          the corresponding characters are entered (*bold*, /italic/, -strikeout-,
1323          _underline_).</desc>
1324          <label>Apply bold, italics, strikeout or underline</label>
1325        </info>
1326        <value>false</value>
1327      </prop>
1328      <prop oor:name="SetInetAttribute" oor:type="xs:boolean" oor:nillable="false">
1329        <!-- UIHints: Tools  AutoCorrect/AutoFormat  Options - URL
1330             recognition -->
1331        <info>
1332          <desc>Specifies if character strings which could represent a URL
1333          should be converted to a hyperlink.</desc>
1334          <label>Detect URL</label>
1335        </info>
1336        <value>true</value>
1337      </prop>
1338      <prop oor:name="ChangeOrdinalNumber" oor:type="xs:boolean" oor:nillable="false">
1339        <!-- UIHints: Tools  AutoCorrect/AutoFormat  Options - Replace
1340             1st... -->
1341        <info>
1342          <desc>Specifies if ordinal numbers should be displayed with raised
1343          endings.</desc>
1344          <label>Replace ordinal numbers</label>
1345        </info>
1346        <value>true</value>
1347      </prop>
1348      <prop oor:name="ChangeDash" oor:type="xs:boolean" oor:nillable="false">
1349        <!-- UIHints: Tools  AutoCorrect/AutoFormat  Options - Replace
1350             dashes -->
1351        <info>
1352          <desc>Specifies if minus signs should be replaced by dashes
1353          automatically.</desc>
1354          <label>Replace dashes</label>
1355        </info>
1356        <value>true</value>
1357      </prop>
1358      <prop oor:name="AddNonBreakingSpace" oor:type="xs:boolean" oor:nillable="false">
1359        <!-- UIHints: Tools  AutoCorrect/AutoFormat  Options - Add non-breaking
1360             space -->
1361        <info>
1362          <desc>Adds a non-breaking space before the characters :;!? in
1363          french.</desc>
1364          <label>Add non-breaking space</label>
1365        </info>
1366        <value>true</value>
1367      </prop>
1368      <prop oor:name="TransliterateRTL" oor:type="xs:boolean" oor:nillable="false">
1369        <!-- UIHints: Tools  AutoCorrect/AutoFormat  Options - Transliterate Hungarian to Old Hungarian -->
1370        <info>
1371          <desc>Transliterates RTL Hungarian text to Old Hungarian script.</desc>
1372          <label>Transliterate RTL text to Old Hungarian</label>
1373        </info>
1374        <value>true</value>
1375      </prop>
1376      <prop oor:name="ChangeAngleQuotes" oor:type="xs:boolean" oor:nillable="false">
1377        <!-- UIHints: Tools  AutoCorrect/AutoFormat  Options - Replace << and >> with angle quotes -->
1378        <info>
1379          <desc>Specifies if &lt;&lt; or &gt;&gt; should be replaced by angle quotes automatically.</desc>
1380          <label>Replace angle quotes</label>
1381        </info>
1382        <value>true</value>
1383      </prop>
1384      <prop oor:name="RemoveDoubleSpaces" oor:type="xs:boolean" oor:nillable="false">
1385        <!-- UIHints: Tools  AutoCorrect/AutoFormat  Options  Ignore Double
1386             Spaces -->
1387        <info>
1388          <desc>Specifies if multiple spaces should be combined into one.</desc>
1389          <label>Ignore double spaces</label>
1390        </info>
1391        <value>false</value>
1392      </prop>
1393      <prop oor:name="CorrectAccidentalCapsLock" oor:type="xs:boolean" oor:nillable="false">
1394        <!-- UIHints: Tools  AutoCorrect/AutoFormat  Options  Correct accidental
1395             use of cAPS LOCK key -->
1396        <info>
1397          <desc>Specifies whether or not to correct accidental use of CAPS lock
1398          key.</desc>
1399          <label>Correct accidental use of cAPS LOCK key</label>
1400        </info>
1401        <value>true</value>
1402      </prop>
1403      <prop oor:name="ReplaceSingleQuote" oor:type="xs:boolean" oor:nillable="false">
1404        <!-- UIHints: Tools  AutoCorrect/AutoFormat  Custom Quotes  Single
1405             quotes -->
1406        <info>
1407          <desc>Specifies if single quotes should be replaced.</desc>
1408          <label>Single quotes - Replace</label>
1409        </info>
1410        <value>true</value>
1411      </prop>
1412      <prop oor:name="SingleQuoteAtStart" oor:type="xs:int">
1413        <!-- UIHints: Tools  AutoCorrect/AutoFormat  Custom Quotes  Single
1414             quotes -->
1415        <info>
1416          <desc>Specifies the start single quote.</desc>
1417          <label>Start single quote</label>
1418        </info>
1419      </prop>
1420      <prop oor:name="SingleQuoteAtEnd" oor:type="xs:int">
1421        <!-- UIHints: Tools  AutoCorrect/AutoFormat  Custom Quotes  Single
1422             quotes -->
1423        <info>
1424          <desc>Specifies the end single quote.</desc>
1425          <label>End Single quote</label>
1426        </info>
1427      </prop>
1428      <prop oor:name="ReplaceDoubleQuote" oor:type="xs:boolean" oor:nillable="false">
1429        <!-- UIHints: Tools  AutoCorrect/AutoFormat  Custom Quotes  Double
1430             quotes -->
1431        <info>
1432          <desc>Specifies if double quotes should be replaced.</desc>
1433          <label>Double quotes - Replace</label>
1434        </info>
1435        <value>true</value>
1436      </prop>
1437      <prop oor:name="DoubleQuoteAtStart" oor:type="xs:int">
1438        <!-- UIHints: Tools  AutoCorrect/AutoFormat  Custom Quotes  Double
1439             quotes -->
1440        <info>
1441          <desc>Specifies the start quote.</desc>
1442          <label>Start quote</label>
1443        </info>
1444      </prop>
1445      <prop oor:name="DoubleQuoteAtEnd" oor:type="xs:int">
1446        <!-- UIHints: Tools  AutoCorrect/AutoFormat  Custom Quotes  Double
1447             quotes -->
1448        <info>
1449          <desc>Specifies the end quote.</desc>
1450          <label>End quote</label>
1451        </info>
1452      </prop>
1453      <group oor:name="Exceptions">
1454        <info>
1455          <desc>Contains settings to apply replacement rules and
1456          exceptions.</desc>
1457        </info>
1458        <prop oor:name="TwoCapitalsAtStart" oor:type="xs:boolean" oor:nillable="false">
1459          <!-- UIHints: Tools - AutoCorrect/AutoFormat - Exceptions - Words with
1460               2 initial capitals or small initial -->
1461          <info>
1462            <desc>Specifies if defined words with two initial capital letters
1463            or a small initial letter should not be included in the AutoCorrect
1464            replacement.</desc>
1465            <label>Words with two initial capital letters or a small initial -
1466            Add automatically</label>
1467          </info>
1468          <value>true</value>
1469        </prop>
1470        <prop oor:name="CapitalAtStartSentence" oor:type="xs:boolean" oor:nillable="false">
1471          <!-- UIHints: Tools - AutoCorrect/AutoFormat - Exceptions -
1472               Abbreviation -->
1473          <info>
1474            <desc>Specifies if defined abbreviations should be taken into
1475            account to exclude a preceding capital letter.</desc>
1476            <label>Abbreviations (no subsequent capital letter) - Add
1477            automatically</label>
1478          </info>
1479          <value>true</value>
1480        </prop>
1481      </group>
1482    </group>
1483    <group oor:name="Cache">
1484      <info>
1485        <desc>Specifies cache related options.</desc>
1486      </info>
1487      <group oor:name="DrawingEngine">
1488        <info>
1489          <desc>Specifies the cache related options for the drawing
1490          engine.</desc>
1491        </info>
1492        <prop oor:name="OLE_Objects" oor:type="xs:int" oor:nillable="false">
1493          <!-- Notice: MaxOLEObjectsInDrawingEngineMemory -->
1494          <info>
1495            <desc>Determines the maximum number of OLE objects that can be held
1496            in RAM for drawings, presentations and inserted drawing objects. The
1497            fewer OLE objects contained in RAM, the more space is available for
1498            other functions. The more OLE objects in RAM, the faster you can
1499            page through the objects since they do not always need to be loaded
1500            from the hard drive.</desc>
1501          </info>
1502          <value>200</value>
1503        </prop>
1504      </group>
1505      <group oor:name="Writer">
1506        <info>
1507          <desc>Specifies the cache related options for Writer.</desc>
1508        </info>
1509        <prop oor:name="OLE_Objects" oor:type="xs:int" oor:nillable="false">
1510          <!-- Notice: MaxOLEObjectsInSWMemory -->
1511          <info>
1512            <desc>Determines the maximum number of OLE objects that can be held
1513            in RAM for the writer. The fewer OLE objects contained in RAM, the
1514            more space is available for other functions. The more OLE objects in
1515            RAM, the faster you can page through the objects since they do not
1516            always need to be loaded from the hard drive.</desc>
1517          </info>
1518          <value>20</value>
1519        </prop>
1520      </group>
1521      <group oor:name="GraphicManager">
1522        <info>
1523          <desc>Specifies a group of graphic manager cache options.</desc>
1524          <label>Image Manager Cache</label>
1525        </info>
1526        <prop oor:name="TotalCacheSize" oor:type="xs:int" oor:nillable="false">
1527          <info>
1528            <deprecated>Not used anymore</deprecated>
1529            <desc>Specifies the maximum cache size for all graphical display
1530            objects.</desc>
1531            <label>Total Image Cache Size</label>
1532          </info>
1533          <value>400000000</value>
1534        </prop>
1535        <prop oor:name="ObjectCacheSize" oor:type="xs:int" oor:nillable="false">
1536          <info>
1537            <deprecated>Not used anymore</deprecated>
1538            <desc>Specifies the maximum cache size for a single graphic display
1539            object.</desc>
1540            <label>Image Object Cache Size</label>
1541          </info>
1542          <value>12600000</value>
1543        </prop>
1544        <prop oor:name="ObjectReleaseTime" oor:type="xs:int" oor:nillable="false">
1545          <info>
1546            <deprecated>Not used anymore</deprecated>
1547            <desc>Specifies the time in seconds after which a cached object is
1548            freed from the cache.</desc>
1549            <label>Image Object Release Timeout</label>
1550          </info>
1551          <value>600</value>
1552        </prop>
1553        <prop oor:name="GraphicSwappingEnabled" oor:type="xs:boolean" oor:nillable="false">
1554          <info>
1555            <desc>Whether graphics will be swapped to disk when `GraphicMemoryLimit`
1556            is reached. Disable at your own risk.</desc>
1557            <label>Graphic Swapping Enabled</label>
1558          </info>
1559          <value>true</value>
1560        </prop>
1561        <prop oor:name="GraphicMemoryLimit" oor:type="xs:int" oor:nillable="false">
1562          <info>
1563            <desc>Specifies the allowed cumulated memory that the
1564            graphic objects can occupy before they start to get swapped
1565            to the disk to save memory.</desc>
1566            <label>Graphic Memory Limit Size</label>
1567          </info>
1568          <value>300000000</value>
1569        </prop>
1570        <prop oor:name="GraphicAllowedIdleTime" oor:type="xs:int" oor:nillable="false">
1571          <info>
1572            <desc>Specifies the time in seconds when the graphic object
1573            can be idle (time since it was last used) before it is
1574            considered to be swapped to the disk to save memory.</desc>
1575            <label>Graphic Allowed Idle Time</label>
1576          </info>
1577          <value>10</value>
1578        </prop>
1579      </group>
1580      <group oor:name="Skia">
1581        <info>
1582          <desc>Specifies a group of cache options related to Skia-based drawing.</desc>
1583        </info>
1584        <prop oor:name="ImageCacheSize" oor:type="xs:long" oor:nillable="false">
1585          <info>
1586            <desc>Specifies the maximum cache size in bytes for all images used by Skia-based
1587            drawing code. Larger size may improve drawing performance when using
1588            many large images in software rendering mode.</desc>
1589            <label>Image Cache Size</label>
1590          </info>
1591          <value>64000000</value>
1592        </prop>
1593      </group>
1594      <group oor:name="Font">
1595        <info>
1596          <desc>Specifies the cache related options for fonts.</desc>
1597        </info>
1598        <prop oor:name="GlyphsCacheSize" oor:type="xs:long" oor:nillable="false">
1599          <info>
1600            <desc>Specifies the maximum cache size in bytes for all glyphs used
1601            when laying out text. Larger size may improve text drawing performance
1602            in large documents.</desc>
1603            <label>Glyphs Cache Size</label>
1604          </info>
1605          <value>20000000</value>
1606        </prop>
1607        <prop oor:name="TextRunsCacheSize" oor:type="xs:long" oor:nillable="false">
1608          <info>
1609            <desc>Specifies the maximum cache size in bytes for all text run data used
1610            when laying out text. Larger size may improve text drawing performance
1611            in large documents.</desc>
1612            <label>Text Runs Cache Size</label>
1613          </info>
1614          <value>100000</value>
1615        </prop>
1616      </group>
1617    </group>
1618    <group oor:name="Path">
1619      <!-- UIHints: Tools - Options - General - Paths -->
1620      <info>
1621        <desc>Contains the current and default path settings used by the
1622        Office.</desc>
1623      </info>
1624      <group oor:name="Current">
1625        <info>
1626          <desc>Contains the global path settings, mainly those of the Options
1627          dialog.</desc>
1628        </info>
1629        <prop oor:name="Addin" oor:type="xs:string" oor:nillable="false">
1630          <info>
1631            <desc>Specifies the directory that contains spreadsheet add-ins
1632            which use the old add-in API.</desc>
1633          </info>
1634          <value>$(progpath)/addin</value>
1635        </prop>
1636        <prop oor:name="AutoCorrect" oor:type="oor:string-list">
1637          <info>
1638            <desc>Specifies the settings of the AutoCorrect dialog.</desc>
1639          </info>
1640          <value>
1641            <it>$(insturl)/@LIBO_SHARE_FOLDER@/autocorr</it>
1642            <it>$(userurl)/autocorr</it>
1643          </value>
1644        </prop>
1645        <prop oor:name="AutoText" oor:type="oor:string-list">
1646          <info>
1647            <desc>Contains the directory which contains the AutoText
1648            modules.</desc>
1649          </info>
1650          <value>
1651            <it>$(insturl)/@LIBO_SHARE_FOLDER@/autotext/$(vlang)</it>
1652            <it>$(userurl)/autotext</it>
1653          </value>
1654        </prop>
1655        <prop oor:name="Backup" oor:type="xs:string">
1656          <info>
1657            <desc>Stores the automatic backup copies of documents.</desc>
1658          </info>
1659          <value>$(userurl)/backup</value>
1660        </prop>
1661        <prop oor:name="Basic" oor:type="oor:string-list" oor:nillable="false">
1662          <info>
1663            <desc>Contains the Basic files, which are used by the
1664            AutoPilots.</desc>
1665          </info>
1666          <value>
1667            <it>$(insturl)/@LIBO_SHARE_FOLDER@/basic</it>
1668            <it>$(userurl)/basic</it>
1669          </value>
1670        </prop>
1671        <prop oor:name="Bitmap" oor:type="xs:string" oor:nillable="false">
1672          <info>
1673            <desc>Contains the bitmap files which can be used for menu and
1674            toolbar icons.</desc>
1675          </info>
1676          <value>$(insturl)/@LIBO_SHARE_FOLDER@/config/symbol</value>
1677        </prop>
1678        <prop oor:name="Config" oor:type="xs:string" oor:nillable="false">
1679          <info>
1680            <desc>Contains the configuration files. This value cannot be changed
1681            through the user interface.</desc>
1682          </info>
1683          <value>$(insturl)/@LIBO_SHARE_FOLDER@/config</value>
1684        </prop>
1685        <prop oor:name="Dictionary" oor:type="xs:string">
1686          <info>
1687            <desc>Contains the provided dictionaries.</desc>
1688          </info>
1689          <value>$(insturl)/@LIBO_SHARE_FOLDER@/wordbook</value>
1690        </prop>
1691        <prop oor:name="Favorite" oor:type="xs:string" oor:nillable="false">
1692          <info>
1693            <desc>Specifies the path to save folder bookmarks.</desc>
1694          </info>
1695          <value>$(userurl)/config/folders</value>
1696        </prop>
1697        <prop oor:name="Filter" oor:type="xs:string" oor:nillable="false">
1698          <info>
1699            <desc>Specifies the directory where all the filters are
1700            stored.</desc>
1701          </info>
1702          <value>$(progpath)/filter</value>
1703        </prop>
1704        <prop oor:name="Gallery" oor:type="oor:string-list">
1705          <info>
1706            <desc>Specifies the directory which contains the Gallery database
1707            and multimedia files.</desc>
1708          </info>
1709          <value>
1710            <it>$(insturl)/@LIBO_SHARE_FOLDER@/gallery</it>
1711            <it>$(userurl)/gallery</it>
1712          </value>
1713        </prop>
1714        <prop oor:name="Graphic" oor:type="xs:string">
1715          <info>
1716            <desc>Specifies the directory that is displayed when the dialog for
1717            opening an image or for saving a new image is called.</desc>
1718          </info>
1719          <value>$(userurl)/gallery</value>
1720        </prop>
1721        <prop oor:name="Help" oor:type="xs:string" oor:nillable="false">
1722          <info>
1723            <desc>Specifies the path to the Office help files.</desc>
1724          </info>
1725          <value>$(instpath)/@LIBO_SHARE_HELP_FOLDER@</value>
1726        </prop>
1727        <prop oor:name="Linguistic" oor:type="xs:string" oor:nillable="false">
1728          <info>
1729            <desc>Contains the files that are necessary for the
1730            spellcheck.</desc>
1731          </info>
1732          <value>$(insturl)/@LIBO_SHARE_FOLDER@/dict</value>
1733        </prop>
1734        <prop oor:name="Module" oor:type="xs:string" oor:nillable="false">
1735          <info>
1736            <desc>Contains the Office modules.</desc>
1737          </info>
1738          <value>$(progpath)</value>
1739        </prop>
1740        <prop oor:name="Palette" oor:type="oor:string-list" oor:nillable="false">
1741          <info>
1742            <desc>Specifies the path to the palette files *.SOB to *.SOF
1743            containing user-defined colors and patterns.</desc>
1744          </info>
1745          <value>
1746            <it>$(insturl)/@LIBO_SHARE_FOLDER@/palette</it>
1747            <it>$(userurl)/config</it>
1748          </value>
1749        </prop>
1750        <prop oor:name="Plugin" oor:type="oor:string-list" oor:nillable="false">
1751          <info>
1752            <desc>Specifies the directory in which the plugins are saved.</desc>
1753          </info>
1754          <value>
1755            <it>$(progpath)/plugin</it>
1756          </value>
1757        </prop>
1758        <prop oor:name="Storage" oor:type="xs:string" oor:nillable="false">
1759          <info>
1760            <deprecated>Without replacement.</deprecated>
1761            <desc>Specifies the location where misc data are stored.</desc>
1762          </info>
1763          <value>$(userpath)/store</value>
1764        </prop>
1765        <prop oor:name="Temp" oor:type="xs:string">
1766          <info>
1767            <deprecated>Replaced by
1768            org.openoffice.Office.Paths/Temp</deprecated>
1769            <desc>Specifies the base directory used by the Office to store temp
1770            files.</desc>
1771          </info>
1772          <value/>
1773        </prop>
1774        <prop oor:name="Template" oor:type="oor:string-list">
1775          <info>
1776            <desc>Specifies the templates originate from these folders and
1777            sub-folders.</desc>
1778          </info>
1779          <value>
1780            <it>$(insturl)/@LIBO_SHARE_FOLDER@/template/$(vlang)</it>
1781            <it>$(insturl)/@LIBO_SHARE_FOLDER@/template/common</it>
1782            <it>$(userurl)/template</it>
1783          </value>
1784        </prop>
1785        <prop oor:name="UIConfig" oor:type="oor:string-list" oor:nillable="false">
1786          <info>
1787            <desc>Specifies additional folders containing a global user
1788            interface configuration. The final user interface configuration is
1789            merged from UserConfig and from these folders.</desc>
1790          </info>
1791          <value>
1792            <it>$(insturl)/@LIBO_SHARE_FOLDER@/config</it>
1793          </value>
1794        </prop>
1795        <prop oor:name="UserConfig" oor:type="xs:string" oor:nillable="false">
1796          <info>
1797            <desc>Specifies the folder with the user settings.</desc>
1798          </info>
1799          <value>$(userurl)/config</value>
1800        </prop>
1801        <prop oor:name="UserDictionary" oor:type="xs:string" oor:nillable="false">
1802          <info>
1803            <desc>Contains the custom dictionaries.</desc>
1804          </info>
1805          <value>$(userurl)/wordbook</value>
1806        </prop>
1807        <prop oor:name="Work" oor:type="xs:string">
1808          <info>
1809            <desc>Specifies the path of the work folder, which can be modified
1810            according to the user's needs. The path specified here can be seen
1811            in the Open or Save dialog.</desc>
1812          </info>
1813          <value>$(work)</value>
1814        </prop>
1815      </group>
1816      <group oor:name="Default">
1817        <info>
1818          <desc>Contains the default values of all the paths, which can be
1819          modified according to the user's needs. They are used when pressing
1820          the Standard-button in the Options dialog.</desc>
1821        </info>
1822        <prop oor:name="Addin" oor:type="xs:string" oor:nillable="false">
1823          <info>
1824            <desc>Specifies the default directory that contains spreadsheet
1825            add-ins which use the old add-in API.</desc>
1826          </info>
1827          <value>$(progpath)/addin</value>
1828        </prop>
1829        <prop oor:name="AutoCorrect" oor:type="oor:string-list" oor:nillable="false">
1830          <info>
1831            <desc>Specifies the default directory for the settings of the
1832            AutoCorrect dialog.</desc>
1833          </info>
1834          <value>
1835            <it>$(insturl)/@LIBO_SHARE_FOLDER@/autocorr</it>
1836            <it>$(userurl)/autocorr</it>
1837          </value>
1838        </prop>
1839        <prop oor:name="AutoText" oor:type="oor:string-list" oor:nillable="false">
1840          <info>
1841            <desc>Specifies the default directory where the AutoText modules are
1842            located.</desc>
1843          </info>
1844          <value>
1845            <it>$(insturl)/@LIBO_SHARE_FOLDER@/autotext/$(vlang)</it>
1846            <it>$(userurl)/autotext</it>
1847          </value>
1848        </prop>
1849        <prop oor:name="Backup" oor:type="xs:string" oor:nillable="false">
1850          <info>
1851            <desc>Specifies the default directory for the automatic backup
1852            copies of documents.</desc>
1853          </info>
1854          <value>$(userurl)/backup</value>
1855        </prop>
1856        <prop oor:name="Basic" oor:type="oor:string-list" oor:nillable="false">
1857          <info>
1858            <desc>Specifies the default directory where the Basic files, used by
1859            the AutoPilots, are located.</desc>
1860          </info>
1861          <value>
1862            <it>$(insturl)/@LIBO_SHARE_FOLDER@/basic</it>
1863            <it>$(userurl)/basic</it>
1864          </value>
1865        </prop>
1866        <prop oor:name="Bitmap" oor:type="xs:string" oor:nillable="false">
1867          <info>
1868            <desc>Specifies the default directory where the bitmap files, which
1869            can be used for the menu and toolbar icons, are located.</desc>
1870          </info>
1871          <value>$(insturl)/@LIBO_SHARE_FOLDER@/config/symbol</value>
1872        </prop>
1873        <prop oor:name="Config" oor:type="xs:string" oor:nillable="false">
1874          <info>
1875            <desc>Specifies the default directory where the configuration files
1876            are stored.</desc>
1877          </info>
1878          <value>$(insturl)/@LIBO_SHARE_FOLDER@/config</value>
1879        </prop>
1880        <prop oor:name="Classification" oor:type="xs:string" oor:nillable="false">
1881          <info>
1882            <desc>Contains the URL of the default TSCP BAF policy file.</desc>
1883          </info>
1884          <value>$(insturl)/@LIBO_SHARE_FOLDER@/classification/example.xml</value>
1885        </prop>
1886        <prop oor:name="Dictionary" oor:type="xs:string" oor:nillable="false">
1887          <info>
1888            <desc>Specifies the default directory where the provided
1889            dictionaries are located.</desc>
1890          </info>
1891          <value>$(insturl)/@LIBO_SHARE_FOLDER@/wordbook/$(vlang)</value>
1892        </prop>
1893        <prop oor:name="Favorite" oor:type="xs:string" oor:nillable="false">
1894          <info>
1895            <desc>Specifies the default directory where folder bookmarks are
1896            stored.</desc>
1897          </info>
1898          <value>$(userurl)/config/folders</value>
1899        </prop>
1900        <prop oor:name="Filter" oor:type="xs:string" oor:nillable="false">
1901          <info>
1902            <desc>Specifies the default directory where all the filters are
1903            stored.</desc>
1904          </info>
1905          <value>$(progpath)/filter</value>
1906        </prop>
1907        <prop oor:name="Gallery" oor:type="oor:string-list" oor:nillable="false">
1908          <info>
1909            <desc>Specifies the default directory where the Gallery database and
1910            multimedia files are located.</desc>
1911          </info>
1912          <value>
1913            <it>$(insturl)/@LIBO_SHARE_FOLDER@/gallery</it>
1914            <it>$(userurl)/gallery</it>
1915          </value>
1916        </prop>
1917        <prop oor:name="Graphic" oor:type="xs:string" oor:nillable="false">
1918          <info>
1919            <desc>Specifies the default directory used by the dialog for opening
1920            an image or for saving a new image.</desc>
1921          </info>
1922          <value>$(userurl)/gallery</value>
1923        </prop>
1924        <prop oor:name="Help" oor:type="xs:string" oor:nillable="false">
1925          <info>
1926            <desc>Specifies the default directory where Office help files are
1927            located.</desc>
1928          </info>
1929          <value>$(instpath)/@LIBO_SHARE_HELP_FOLDER@</value>
1930        </prop>
1931        <prop oor:name="Linguistic" oor:type="xs:string" oor:nillable="false">
1932          <info>
1933            <desc>Specifies the default directory where the files that are
1934            necessary for the spellcheck are saved.</desc>
1935          </info>
1936          <value>$(insturl)/@LIBO_SHARE_FOLDER@/dict</value>
1937        </prop>
1938        <prop oor:name="Module" oor:type="xs:string" oor:nillable="false">
1939          <info>
1940            <desc>Specifies the default directory which contains the Office
1941            modules.</desc>
1942          </info>
1943          <value>$(progpath)</value>
1944        </prop>
1945        <prop oor:name="Palette" oor:type="xs:string" oor:nillable="false">
1946          <info>
1947            <desc>Specifies the default directory for the palette files *.SOB to
1948            *.SOF containing user-defined colors and patterns.</desc>
1949          </info>
1950          <value>$(userurl)/config</value>
1951        </prop>
1952        <prop oor:name="Plugin" oor:type="oor:string-list" oor:nillable="false">
1953          <info>
1954            <desc>Specifies the default directory where the Office plugins are
1955            located.</desc>
1956          </info>
1957          <value>
1958            <it>$(progpath)/plugin</it>
1959          </value>
1960        </prop>
1961        <prop oor:name="Temp" oor:type="xs:string" oor:nillable="false">
1962          <info>
1963            <desc>Specifies the default directory that is used as a base
1964            directory for all temporary Office files.</desc>
1965          </info>
1966          <value>$(temp)</value>
1967        </prop>
1968        <prop oor:name="Template" oor:type="oor:string-list" oor:nillable="false">
1969          <info>
1970            <desc>Specifies the default directory where all provided templates
1971            are located in folders and sub-folders.</desc>
1972          </info>
1973          <value>
1974            <it>$(insturl)/@LIBO_SHARE_FOLDER@/template/$(vlang)</it>
1975            <it>$(insturl)/@LIBO_SHARE_FOLDER@/template/common</it>
1976            <it>$(userurl)/template</it>
1977          </value>
1978        </prop>
1979        <prop oor:name="UIConfig" oor:type="oor:string-list" oor:nillable="false">
1980          <info>
1981            <desc>Specifies the default directories for the global user
1982            interface configuration. The final user interface configuration is
1983            merged from UserConfig and from these folders.</desc>
1984          </info>
1985          <value/>
1986        </prop>
1987        <prop oor:name="UserConfig" oor:type="xs:string" oor:nillable="false">
1988          <info>
1989            <desc>Specifies the default directory which stores the user
1990            settings.</desc>
1991          </info>
1992          <value>$(userurl)/config</value>
1993        </prop>
1994        <prop oor:name="UserDictionary" oor:type="xs:string" oor:nillable="false">
1995          <info>
1996            <desc>Specifies the default directory which stores the custom
1997            dictionaries.</desc>
1998          </info>
1999          <value>$(userurl)/wordbook</value>
2000        </prop>
2001        <prop oor:name="Work" oor:type="xs:string" oor:nillable="false">
2002          <info>
2003            <desc>Specifies the default working directory where user stores
2004            documents.</desc>
2005          </info>
2006          <value>$(work)</value>
2007        </prop>
2008      </group>
2009    </group>
2010    <group oor:name="Font">
2011      <info>
2012        <desc>Contains some common settings for fonts.</desc>
2013      </info>
2014      <group oor:name="Substitution">
2015        <info>
2016          <desc>Contains settings for the font substitution.</desc>
2017        </info>
2018        <prop oor:name="Replacement" oor:type="xs:boolean" oor:nillable="false">
2019          <!-- UIHints: Tools - Options - General - Font replacement -->
2020          <info>
2021            <desc>Determines if the list of font replacements is applied or
2022            not</desc>
2023            <label>Apply replacement table</label>
2024          </info>
2025          <value>false</value>
2026        </prop>
2027        <set oor:name="FontPairs" oor:node-type="FontReplacement">
2028          <!-- UIHints: Tools - Options - General - Font replacement -->
2029          <info>
2030            <desc>Specifies a substitution of the requested font, even if this
2031            font is available on the user's system.</desc>
2032          </info>
2033        </set>
2034      </group>
2035      <group oor:name="View">
2036        <info>
2037          <desc>Contains the settings for the font selection box in the object
2038          bar.</desc>
2039        </info>
2040        <prop oor:name="History" oor:type="xs:boolean" oor:nillable="false">
2041          <!-- UIHints: Tools - Options - General - View -->
2042          <info>
2043            <desc>Contains the last five fonts, which are shown on the top of a
2044            list, beginning with the last one. This list will be displayed on
2045            the font-name-box of the object bar.</desc>
2046          </info>
2047          <value>true</value>
2048        </prop>
2049        <prop oor:name="ShowFontBoxWYSIWYG" oor:type="xs:boolean" oor:nillable="false">
2050          <!-- UIHints: Tools - Options - General - View -->
2051          <info>
2052            <desc>Specifies that the names of the selectable fonts will be
2053            displayed with this font.</desc>
2054          </info>
2055          <value>true</value>
2056        </prop>
2057      </group>
2058      <group oor:name="SourceViewFont">
2059        <info>
2060          <desc>Specifies the font name and height used in HTML source
2061          view</desc>
2062        </info>
2063        <prop oor:name="FontName" oor:type="xs:string">
2064          <info>
2065            <desc>Specifies the name of the font that is used in source views
2066            (HTML source view or BASIC IDE)</desc>
2067          </info>
2068        </prop>
2069        <prop oor:name="FontHeight" oor:type="xs:short" oor:nillable="false">
2070          <info>
2071            <desc>Specifies the height, in points, of the font that is used in
2072            source views (HTML source view or BASIC IDE)</desc>
2073          </info>
2074          <value>10</value>
2075        </prop>
2076        <prop oor:name="NonProportionalFontsOnly" oor:type="xs:boolean" oor:nillable="false">
2077          <info>
2078            <desc>Specifies whether only non-proportional font should be
2079            presented on the dialog page.</desc>
2080          </info>
2081          <value>true</value>
2082        </prop>
2083      </group>
2084    </group>
2085    <group oor:name="Gallery">
2086      <info>
2087        <desc>Specifies Gallery options.</desc>
2088        <label>Gallery Options</label>
2089      </info>
2090    </group>
2091    <group oor:name="Menus">
2092      <info>
2093        <desc>Contains information about configurable menus.</desc>
2094      </info>
2095      <set oor:name="New" oor:node-type="MenuType">
2096        <info>
2097          <desc>Contains all entries of new menu.</desc>
2098        </info>
2099      </set>
2100      <set oor:name="Wizard" oor:node-type="MenuType">
2101        <info>
2102          <desc>Contains all entries of wizard menu.</desc>
2103        </info>
2104      </set>
2105      <set oor:name="HelpBookmarks" oor:node-type="MenuType">
2106        <info>
2107          <desc>Contains all help bookmarks.</desc>
2108        </info>
2109      </set>
2110      <prop oor:name="SendFeedbackURL" oor:type="xs:string" oor:nillable="false">
2111        <info>
2112          <desc>Specifies the URL used with the UNO command SendFeedback (SID_SEND_FEEDBACK).</desc>
2113        </info>
2114      </prop>
2115      <prop oor:name="VolunteerURL" oor:type="xs:string" oor:nillable="false">
2116        <info>
2117          <desc>Specifies the URL opened per click on the brand image at the start center.</desc>
2118        </info>
2119      </prop>
2120      <prop oor:name="QA_URL" oor:type="xs:string" oor:nillable="false">
2121        <info>
2122          <desc>Specifies the URL used with the UNO command QuestionAnswers (SID_Q_AND_A).</desc>
2123        </info>
2124      </prop>
2125      <prop oor:name="DocumentationURL" oor:type="xs:string" oor:nillable="false">
2126        <info>
2127          <desc>Specifies the URL used with the UNO command Documentation (SID_DOCUMENTATION).</desc>
2128        </info>
2129      </prop>
2130      <prop oor:name="GetInvolvedURL" oor:type="xs:string" oor:nillable="false">
2131        <info>
2132          <desc>Specifies the URL used with the UNO command GetInvolved (SID_GETINVOLVED).</desc>
2133        </info>
2134      </prop>
2135      <prop oor:name="DonationURL" oor:type="xs:string" oor:nillable="false">
2136        <info>
2137          <desc>Specifies the URL used with the UNO command Donation (SID_DONATION).</desc>
2138        </info>
2139      </prop>
2140      <prop oor:name="ReleaseNotesURL" oor:type="xs:string" oor:nillable="false">
2141        <info>
2142          <desc>Specifies the URL used with the UNO command WhatsNew (SID_WHATSNEW).</desc>
2143        </info>
2144      </prop>
2145      <prop oor:name="CreditsURL" oor:type="xs:string" oor:nillable="false">
2146        <info>
2147          <desc>Specifies the URL for the LibreOffice Credits page.</desc>
2148        </info>
2149      </prop>
2150      <prop oor:name="HyphenationMissingURL" oor:type="xs:string" oor:nillable="false">
2151        <info>
2152          <desc>Specifies the URL used with the UNO command HyphenationMissing (SID_HYPHENATIONMISSING).</desc>
2153        </info>
2154      </prop>
2155      <prop oor:name="InstallJavaURL" oor:type="xs:string" oor:nillable="false">
2156        <info>
2157          <desc>Specifies the URL used for Install Java message box.</desc>
2158        </info>
2159      </prop>
2160      <prop oor:name="PrivacyPolicyURL" oor:type="xs:string" oor:nillable="false">
2161        <info>
2162          <desc>Specifies the URL for a privacy policy.</desc>
2163        </info>
2164      </prop>
2165    </group>
2166    <group oor:name="History">
2167      <info>
2168        <desc>Contains history information.</desc>
2169      </info>
2170      <prop oor:name="HelpBookmarkSize" oor:type="xs:int" oor:nillable="false">
2171        <info>
2172          <desc>Describes the range and current size of the help bookmark
2173          history list.</desc>
2174        </info>
2175        <constraints>
2176          <minInclusive oor:value="0">
2177            <info>
2178              <desc>Defines the minimum range of the help bookmark history
2179              list.</desc>
2180            </info>
2181          </minInclusive>
2182          <maxInclusive oor:value="10000">
2183            <info>
2184              <desc>Defines the maximum range of the help bookmark history
2185              list.</desc>
2186            </info>
2187          </maxInclusive>
2188        </constraints>
2189        <value>10000</value>
2190      </prop>
2191      <prop oor:name="Size" oor:type="xs:int" oor:nillable="false">
2192        <info>
2193          <desc>Describes the range and current size of the history list.</desc>
2194        </info>
2195        <constraints>
2196          <minInclusive oor:value="0">
2197            <info>
2198              <desc>Defines the min range for the history size.</desc>
2199            </info>
2200          </minInclusive>
2201          <maxInclusive oor:value="100">
2202            <info>
2203              <desc>Defines the max range for the history size.</desc>
2204            </info>
2205          </maxInclusive>
2206        </constraints>
2207        <value>100</value>
2208      </prop>
2209      <prop oor:name="PickListSize" oor:type="xs:int" oor:nillable="false">
2210        <!--UI hints: File menu-->
2211        <info>
2212          <desc>Describes the range and current size of the picklist shown
2213          inside the menu.</desc>
2214        </info>
2215        <constraints>
2216          <minInclusive oor:value="0">
2217            <info>
2218              <desc>Defines the min range for the picklist size.</desc>
2219            </info>
2220          </minInclusive>
2221          <maxInclusive oor:value="100">
2222            <info>
2223              <desc>Defines the max range for the picklist size.</desc>
2224            </info>
2225          </maxInclusive>
2226        </constraints>
2227        <value>25</value>
2228      </prop>
2229      <prop oor:name="RecentDocsThumbnail" oor:type="xs:boolean" oor:nillable="false">
2230        <info>
2231          <desc>Specifies whether to generate/show a thumbnail image for RecentDocsView.</desc>
2232          <label>Store/show thumbnails in RecentDocs History</label>
2233        </info>
2234        <value>true</value>
2235      </prop>
2236      <prop oor:name="ShowCurrentModuleOnly" oor:type="xs:boolean" oor:nillable="false">
2237        <info>
2238          <desc>The entry specifies if the recent document list should show only
2239          files that can be handled by the current module.</desc>
2240        </info>
2241        <value>false</value>
2242      </prop>
2243      <set oor:name="HelpBookmarks" oor:node-type="HistoryType">
2244        <info>
2245          <desc>Contains the most recently opened help documents.</desc>
2246        </info>
2247      </set>
2248      <set oor:name="List" oor:node-type="HistoryType">
2249        <info>
2250          <desc>Contains the most recently opened documents.</desc>
2251        </info>
2252      </set>
2253      <set oor:name="PickList" oor:node-type="HistoryType">
2254        <!--UI hints: File menu-->
2255        <info>
2256          <desc>Contains the most recently used documents displayed in the file
2257          menu.</desc>
2258        </info>
2259      </set>
2260    </group>
2261    <group oor:name="Internal">
2262      <info>
2263        <desc>Contains settings which are used during the Office startup to
2264        check for unfinished work.</desc>
2265      </info>
2266      <set oor:name="RecoveryList" oor:node-type="RecoveryEntry">
2267        <info>
2268          <desc>Contains the documents that were opened when the office
2269          crashed.</desc>
2270        </info>
2271      </set>
2272    </group>
2273    <group oor:name="Save">
2274      <info>
2275        <desc>Contains general settings about the saving process.</desc>
2276      </info>
2277      <prop oor:name="WorkingSet" oor:type="xs:boolean" oor:nillable="false">
2278        <!-- UIHints: Tools  Options - General  Save - [Section] Restore editing
2279             view - Open documents-->
2280        <info>
2281          <desc>Specifies if the all open windows and documents should be saved.
2282          If set to true, the URLs of all open documents and all view properties
2283          of all open views are saved when terminating the application.</desc>
2284          <label>Open documents</label>
2285        </info>
2286        <value>false</value>
2287      </prop>
2288      <group oor:name="Document">
2289        <info>
2290          <desc>Contains settings which specify how documents are saved.</desc>
2291        </info>
2292        <prop oor:name="Unpacked" oor:type="xs:boolean" oor:nillable="false">
2293          <!-- UIHints: File - Save/Save As -->
2294          <info>
2295            <desc>Saves OOo 6.0 XML file documents unpacked into a directory.
2296            Documents are represented by the directory content and not by a
2297            single file.</desc>
2298            <label>Save XML files unpacked</label>
2299          </info>
2300          <value>false</value>
2301        </prop>
2302        <prop oor:name="UseUserData" oor:type="xs:boolean" oor:nillable="false">
2303          <!-- UIHints: File - Save/Save As -->
2304          <info>
2305            <desc>Specifies if the user's name should be written into the
2306            Properties dialog of the document when saving the document.</desc>
2307            <label>Use data for document properties</label>
2308          </info>
2309          <value>true</value>
2310        </prop>
2311        <prop oor:name="AutoSave" oor:type="xs:boolean" oor:nillable="false">
2312          <!-- UIHints: Tools  Options - General  Save - [Section] Save -->
2313          <info>
2314            <desc>Specifies whether all modified documents are automatically
2315            saved in a time interval.</desc>
2316            <label>AutoSave every</label>
2317          </info>
2318          <value>true</value>
2319        </prop>
2320        <prop oor:name="GenerateThumbnail" oor:type="xs:boolean" oor:nillable="false">
2321          <!-- UIHints: Tools  Options - General  Save - [Section] Save -->
2322          <info>
2323            <desc>Specifies whether to generate a thumbnail image and place it inside the
2324            odf archive file, which makes it possible to see a preview of the document.</desc>
2325            <label>Store a preview of this document</label>
2326          </info>
2327          <value>true</value>
2328        </prop>
2329        <prop oor:name="CreateBackup" oor:type="xs:boolean" oor:nillable="false">
2330          <!-- UIHints: Tools  Options - General  Save - [Section] Save -->
2331          <info>
2332            <desc>Specifies whether to create a backup copy when a modified
2333            document is saved.</desc>
2334            <label>Always create backup copy</label>
2335          </info>
2336          <value>true</value>
2337        </prop>
2338        <prop oor:name="EditProperty" oor:type="xs:boolean" oor:nillable="false">
2339          <!-- UIHints: Tools  Options - General  Save - [Section] Save -->
2340          <info>
2341            <desc>Specifies if the document properties dialog will be opened for
2342            editing every time a document is saved under a new filename.</desc>
2343            <label>Edit document properties before saving</label>
2344          </info>
2345          <value>false</value>
2346        </prop>
2347        <prop oor:name="AutoSavePrompt" oor:type="xs:boolean" oor:nillable="false">
2348          <!-- UIHints: Tools  Options - General  Save - [Section] Save -->
2349          <info>
2350            <desc>Shows a prompt during AutoSave,even when the document has a
2351            filename.</desc>
2352            <label>Prompt to save</label>
2353          </info>
2354          <value>true</value>
2355        </prop>
2356        <prop oor:name="AutoSaveTimeIntervall" oor:type="xs:int" oor:nillable="false">
2357          <!-- UIHints: Tools  Options - General  Save - [Section] Save -->
2358          <info>
2359            <desc>Specifies the AutoSave time interval in minutes.</desc>
2360            <label>Minutes</label>
2361          </info>
2362          <constraints>
2363            <minInclusive oor:value="1">
2364              <info>
2365                <desc>Specifies that the minimum time interval is 1 minute.</desc>
2366              </info>
2367            </minInclusive>
2368            <maxInclusive oor:value="60">
2369              <info>
2370                <desc>Specifies that the maximum time interval is 60 minutes.</desc>
2371              </info>
2372            </maxInclusive>
2373          </constraints>
2374          <value>10</value>
2375        </prop>
2376        <prop oor:name="ViewInfo" oor:type="xs:boolean" oor:nillable="false">
2377          <!-- UIHints: Tools  Options - General  Save - [Section] Restore
2378               editing view - Document view-->
2379          <info>
2380            <desc>Saves view properties of last active document view when saving
2381            a document.</desc>
2382            <label>Document view</label>
2383          </info>
2384          <value>true</value>
2385        </prop>
2386        <prop oor:name="PrettyPrinting" oor:type="xs:boolean" oor:nillable="false">
2387          <!-- UIHints: Tools  Options - General  Save - optimize XML file
2388               size-->
2389          <!--the UI setting is inverse to this setting-->
2390          <info>
2391            <desc>Specifies if files saved in the OOo 6.0 XML file formats
2392            should be in pretty printing format. Saving and loading the document
2393            takes more time in pretty printing format.</desc>
2394            <label>Open windows</label>
2395          </info>
2396          <value>false</value>
2397        </prop>
2398        <prop oor:name="WarnAlienFormat" oor:type="xs:boolean" oor:nillable="false">
2399          <!-- UIHints: Tools  Options - General  Save - -->
2400          <info>
2401            <desc>Specifies if a warning message is shown if a file is going to
2402            be saved to an alien format.</desc>
2403            <label>Open windows</label>
2404          </info>
2405          <value>true</value>
2406        </prop>
2407        <prop oor:name="AlwaysSaveAs" oor:type="xs:boolean" oor:nillable="false">
2408          <info>
2409            <desc>If the option is set, every time a user triggers a plain Save
2410            operation, SaveAs operation with possible additional user
2411            notifications will be started.</desc>
2412          </info>
2413          <value>false</value>
2414        </prop>
2415        <prop oor:name="LoadPrinter" oor:type="xs:boolean" oor:nillable="false">
2416          <!-- UIHints: Tools - Options - Load/Save - General - Load - Load
2417               printer settings with the document -->
2418          <info>
2419            <desc>Specifies if the printer settings will be loaded with the
2420            document.</desc>
2421          </info>
2422          <value>true</value>
2423        </prop>
2424        <prop oor:name="GeneratorOverride" oor:type="xs:string" oor:nillable="false">
2425          <info>
2426            <desc>If set, the value will be used as the generator information saved
2427            in documents. Note that the generator information may affect document import
2428            and using an inappropriate value here may change how the document is imported.</desc>
2429          </info>
2430          <value></value>
2431        </prop>
2432      </group>
2433      <group oor:name="Graphic">
2434        <info>
2435          <desc>Contains settings on how images contained in a document should
2436          be saved.</desc>
2437        </info>
2438        <prop oor:name="Format" oor:type="xs:int" oor:nillable="false">
2439          <!-- UIHints: Tools  Options - General  Save - [Section] Save
2440               graphics -->
2441          <info>
2442            <desc>Specifies how images contained in a document are
2443            saved.</desc>
2444            <label>Save images Normal/Compressed/Original format</label>
2445          </info>
2446          <constraints>
2447            <enumeration oor:value="0">
2448              <info>
2449                <desc>Normal</desc>
2450              </info>
2451            </enumeration>
2452            <enumeration oor:value="1">
2453              <info>
2454                <desc>Compressed</desc>
2455              </info>
2456            </enumeration>
2457            <enumeration oor:value="2">
2458              <info>
2459                <desc>Original format</desc>
2460              </info>
2461            </enumeration>
2462          </constraints>
2463          <value>1</value>
2464        </prop>
2465        <prop oor:name="AddReplacementImages" oor:type="xs:boolean" oor:nillable="false">
2466          <info>
2467            <desc>Export replacement objects as fallback images for vector graphics (True).</desc>
2468            <label>Export replacement objects as fallback images for vector graphics</label>
2469          </info>
2470          <value>true</value>
2471        </prop>
2472      </group>
2473      <group oor:name="URL">
2474        <info>
2475          <desc>Specifies how URLs in documents should be processed during
2476          save.</desc>
2477        </info>
2478        <prop oor:name="FileSystem" oor:type="xs:boolean" oor:nillable="false">
2479          <!-- UIHints: Tools  Options - General  Save - [Section] Save URLs
2480               relative to -->
2481          <info>
2482            <desc>Specifies whether URLs in documents should be saved relative
2483            to the file system.</desc>
2484            <label>File system</label>
2485          </info>
2486          <value>true</value>
2487        </prop>
2488        <prop oor:name="Internet" oor:type="xs:boolean" oor:nillable="false">
2489          <!-- UIHints: Tools  Options - General  Save - [Section] Save URLs
2490               relative to -->
2491          <info>
2492            <desc>Specifies if URLs in documents should be saved relative to the
2493            Internet.</desc>
2494            <label>Internet</label>
2495          </info>
2496          <value>true</value>
2497        </prop>
2498      </group>
2499      <group oor:name="ODF">
2500        <info>
2501          <desc>Specifies ODF settings.</desc>
2502        </info>
2503        <prop oor:name="DefaultVersion" oor:type="xs:short" oor:nillable="false">
2504          <!-- UIHints: Tools - Options - Load/Save - General - ODF version -->
2505          <info>
2506            <desc>Specifies the default ODF version for saving documents.</desc>
2507          </info>
2508          <constraints>
2509            <enumeration oor:value="0">
2510              <info>
2511                <desc>ODFVER_UNKNOWN</desc>
2512              </info>
2513            </enumeration>
2514            <enumeration oor:value="1">
2515              <info>
2516                <desc>ODFVER_010</desc>
2517              </info>
2518            </enumeration>
2519            <enumeration oor:value="2">
2520              <info>
2521                <desc>ODFVER_011</desc>
2522              </info>
2523            </enumeration>
2524            <enumeration oor:value="4">
2525              <info>
2526                <desc>ODFVER_012</desc>
2527              </info>
2528            </enumeration>
2529            <enumeration oor:value="8">
2530              <info>
2531                <desc>ODFVER_012_EXT_COMPAT</desc>
2532              </info>
2533            </enumeration>
2534            <enumeration oor:value="9">
2535              <info>
2536                <desc>ODFVER_012_EXTENDED</desc>
2537              </info>
2538            </enumeration>
2539            <enumeration oor:value="10">
2540              <info>
2541                <desc>ODFVER_013</desc>
2542              </info>
2543            </enumeration>
2544            <enumeration oor:value="3">
2545              <info>
2546                <desc>ODFVER_LATEST</desc>
2547              </info>
2548            </enumeration>
2549          </constraints>
2550          <value>3</value>
2551        </prop>
2552      </group>
2553    </group>
2554    <group oor:name="Load">
2555      <info>
2556        <desc>Contains settings regarding the loading of documents.</desc>
2557      </info>
2558      <prop oor:name="UserDefinedSettings" oor:type="xs:boolean" oor:nillable="false">
2559        <!-- UIHints: Tools  Options - General  Load/Save - General [Section]
2560             Load - Load user-defined with the document-->
2561        <info>
2562          <desc>Specifies whether the user defined configuration settings are
2563          loaded together with the document.</desc>
2564          <label>Load user-defined settings</label>
2565        </info>
2566        <value>true</value>
2567      </prop>
2568      <prop oor:name="ShowOfficeUpdateDialog" oor:type="xs:boolean" oor:nillable="false">
2569        <info>
2570          <desc>Specifies whether the office update dialog should be shown in
2571          case the loaded document has newer ODF version than the maximal
2572          supported one.</desc>
2573        </info>
2574        <value>true</value>
2575      </prop>
2576      <prop oor:name="DetectWebDAVRedirection" oor:type="xs:boolean" oor:nillable="false">
2577        <info>
2578          <desc>Determines whether to use WebDAV when a file is loaded from a mapped WebDAV drive.</desc>
2579        </info>
2580        <value>true</value>
2581      </prop>
2582      <prop oor:name="DisableBuiltinStyles" oor:type="xs:boolean" oor:nillable="false">
2583        <info>
2584          <desc>Determines whether to skip addition of built-in styles to the document model.</desc>
2585        </info>
2586        <value>false</value>
2587      </prop>
2588    </group>
2589    <group oor:name="Security">
2590      <info>
2591        <desc>Contains security specific Office settings.</desc>
2592      </info>
2593      <prop oor:name="LoadExoticFileFormats" oor:type="xs:int" oor:nillable="false">
2594        <info>
2595          <desc>Determines how exotic file formats should be handled.</desc>
2596        </info>
2597        <constraints>
2598          <enumeration oor:value="0">
2599            <info>
2600              <desc>Refuse loading without question</desc>
2601            </info>
2602          </enumeration>
2603          <enumeration oor:value="1">
2604            <info>
2605              <desc>Display a warning and let the user decide</desc>
2606            </info>
2607          </enumeration>
2608          <enumeration oor:value="2">
2609            <info>
2610              <desc>Always load without question</desc>
2611            </info>
2612          </enumeration>
2613        </constraints>
2614        <value>2</value>
2615      </prop>
2616      <prop oor:name="EnableExpertConfiguration" oor:type="xs:boolean" oor:nillable="false">
2617        <info>
2618          <desc>Determines if the user has access to the entire
2619          configuration via the Expert Configuration button.</desc>
2620        </info>
2621        <value>true</value>
2622      </prop>
2623      <group oor:name="OpenPGP">
2624        <info>
2625          <desc>Contains security settings regarding the GnuPG/OpenPGP backend.</desc>
2626        </info>
2627        <prop oor:name="MinimalKeyExport" oor:type="xs:boolean" oor:nillable="false">
2628          <info>
2629            <desc>Determines if the PGPKeyPacket element on signed
2630            documents will contain the full public key (default), or
2631            the potentially much smaller minimal one, without any signatures.</desc>
2632          </info>
2633          <value>false</value>
2634        </prop>
2635      </group>
2636      <group oor:name="Scripting">
2637        <info>
2638          <desc>Contains security settings regarding Basic scripts.</desc>
2639        </info>
2640        <prop oor:name="SecureURL" oor:type="oor:string-list" oor:nillable="false">
2641          <!-- UIHints: Tools - Options - Browser -->
2642          <info>
2643            <desc>Lists all trustworthy URLs: file: All scripts from the local
2644            file system including a LAN; private:explorer: Scripts from the
2645            Explorer; private:help: Scripts in the help system; private:newmenu:
2646            Scripts that are executed by the commands File-New and AutoPilot;
2647            private:schedule: Scripts of the scheduler; private:searchfolder:
2648            Scripts of the searchfolder; private:user: Scripts that are entered
2649            in the URL field.</desc>
2650          </info>
2651          <value/>
2652        </prop>
2653        <prop oor:name="OfficeBasic" oor:type="xs:int" oor:nillable="false">
2654          <!-- UIHints: Tools - Options - Browser -->
2655          <info>
2656            <desc>Determines how Office Basic scripts should be handled.</desc>
2657          </info>
2658          <constraints>
2659            <enumeration oor:value="0">
2660              <info>
2661                <desc>Never</desc>
2662              </info>
2663            </enumeration>
2664            <enumeration oor:value="1">
2665              <info>
2666                <desc>According to Path List</desc>
2667              </info>
2668            </enumeration>
2669            <enumeration oor:value="2">
2670              <info>
2671                <desc>Always</desc>
2672              </info>
2673            </enumeration>
2674          </constraints>
2675          <value>1</value>
2676        </prop>
2677        <prop oor:name="ExecutePlugins" oor:type="xs:boolean" oor:nillable="false">
2678          <info>
2679            <desc>Specifies whether execution of plugins found inside a document
2680            is allowed.</desc>
2681          </info>
2682          <value>true</value>
2683        </prop>
2684        <prop oor:name="Warning" oor:type="xs:boolean" oor:nillable="false">
2685          <info>
2686            <desc>Specifies whether a warning box should be displayed before
2687            executing a script.</desc>
2688          </info>
2689          <value>false</value>
2690        </prop>
2691        <prop oor:name="Confirmation" oor:type="xs:boolean" oor:nillable="false">
2692          <info>
2693            <desc>Specifies whether the user must confirm before a basic script
2694            can be executed.</desc>
2695          </info>
2696          <value>true</value>
2697        </prop>
2698        <prop oor:name="WarnSaveOrSendDoc" oor:type="xs:boolean" oor:nillable="false">
2699          <info>
2700            <desc>Specifies whether to warn when saving or sending documents with
2701            personal/hidden data.</desc>
2702          </info>
2703          <value>false</value>
2704        </prop>
2705        <prop oor:name="WarnSignDoc" oor:type="xs:boolean" oor:nillable="false">
2706          <info>
2707            <desc>Specifies whether to warn when signing documents with
2708            personal/hidden data.</desc>
2709          </info>
2710          <value>true</value>
2711        </prop>
2712        <prop oor:name="CertDir" oor:type="xs:string">
2713          <info>
2714            <desc>Contains the path to the users NSS certificate directory.</desc>
2715          </info>
2716        </prop>
2717        <prop oor:name="ManualCertDir" oor:type="xs:string" oor:nillable="false">
2718          <info>
2719            <desc>Contains the last path manually selected by the user for the CertDir property.</desc>
2720          </info>
2721        </prop>
2722        <prop oor:name="TSAURLs" oor:type="oor:string-list">
2723          <info>
2724            <desc>Contains the URLs or Time Stamping Authority servers.</desc>
2725          </info>
2726        </prop>
2727        <prop oor:name="WarnPrintDoc" oor:type="xs:boolean" oor:nillable="false">
2728          <info>
2729            <desc>Specifies whether to warn when printing documents with
2730            personal/hidden data.</desc>
2731          </info>
2732          <value>false</value>
2733        </prop>
2734        <prop oor:name="WarnCreatePDF" oor:type="xs:boolean" oor:nillable="false">
2735          <info>
2736            <desc>Specifies whether to warn when creating PDF documents with
2737            personal/hidden data.</desc>
2738          </info>
2739          <value>false</value>
2740        </prop>
2741        <prop oor:name="RemovePersonalInfoOnSaving" oor:type="xs:boolean" oor:nillable="false">
2742          <info>
2743            <desc>Specifies whether to remove personal information on
2744            saving.</desc>
2745          </info>
2746          <value>false</value>
2747        </prop>
2748        <prop oor:name="RecommendPasswordProtection" oor:type="xs:boolean" oor:nillable="false">
2749          <info>
2750            <desc>Specifies whether to recommend password protection when saving
2751            documents.</desc>
2752          </info>
2753          <value>false</value>
2754        </prop>
2755        <prop oor:name="HyperlinksWithCtrlClick" oor:type="xs:boolean" oor:nillable="false">
2756          <info>
2757            <desc>Specifies whether ctrl-click is required to follow
2758            hyperlinks.</desc>
2759          </info>
2760          <value>true</value>
2761        </prop>
2762        <prop oor:name="BlockUntrustedRefererLinks" oor:type="xs:boolean" oor:nillable="false">
2763          <info>
2764            <desc>Specifies whether to block any links originating from
2765            documents that are not among the trusted locations.</desc>
2766          </info>
2767          <value>false</value>
2768        </prop>
2769        <prop oor:name="MacroSecurityLevel" oor:type="xs:int" oor:nillable="false">
2770          <info>
2771            <desc>Level of Macro security.</desc>
2772          </info>
2773          <constraints>
2774            <minInclusive oor:value="0">
2775              <info>
2776                <desc>Lowest level.</desc>
2777              </info>
2778            </minInclusive>
2779            <maxInclusive oor:value="3">
2780              <info>
2781                <desc>Highest level.</desc>
2782              </info>
2783            </maxInclusive>
2784          </constraints>
2785          <value>2</value>
2786        </prop>
2787        <prop oor:name="DisableMacrosExecution" oor:type="xs:boolean" oor:nillable="false">
2788          <info>
2789            <desc>Specifies whether the macro execution is disabled in general.
2790            This will disable Basic, Beanshell, Javascript and Python scripts.
2791            If it is set to true, the "MacroSecurityLevel" is ignored. If it is
2792            set to false, the mentioned entry specified the level of macro
2793            security.</desc>
2794          </info>
2795          <value>false</value>
2796        </prop>
2797        <prop oor:name="CheckDocumentEvents" oor:type="xs:boolean" oor:nillable="false">
2798          <info>
2799            <desc>Warn on load when a document binds an event to a macro</desc>
2800          </info>
2801          <value>true</value>
2802        </prop>
2803        <prop oor:name="AllowedDocumentEventURLs" oor:type="oor:string-list">
2804          <info>
2805            <desc>List of script URLS which are allowed to be called by document events.
2806            Look into content.xml of the odf file to find the URL.
2807            You can either write the full URL, a part of it (starting from the beginning),
2808            or use regular expressions.
2809            Examples:
2810              * vnd.sun.star.script:Standard.Module1.Main?language=Basic&amp;location=user
2811              * vnd.sun.star.script:Standard.Module1
2812              * vnd.sun.star.script:YourScript.*location=share
2813              * .*location=application.*
2814
2815            When this property is not set, all document event URLs are allowed.
2816            </desc>
2817          </info>
2818        </prop>
2819        <set oor:name="TrustedAuthors" oor:node-type="TrustedAuthor">
2820          <info>
2821            <desc>List with trusted authors.</desc>
2822          </info>
2823        </set>
2824        <group oor:name="WindowsSecurityZone">
2825          <info>
2826            <desc>Contains security settings regarding Basic scripts.</desc>
2827          </info>
2828          <prop oor:name="ZoneLocal" oor:type="xs:int" oor:nillable="false">
2829            <info>
2830              <desc>Action needed for opening document with macro with Windows zone
2831              identifier URLZONE_LOCAL_MACHINE (0, local machine).</desc>
2832            </info>
2833            <constraints>
2834              <enumeration oor:value="0">
2835                <info>
2836                  <desc>Ask</desc>
2837                </info>
2838              </enumeration>
2839              <enumeration oor:value="1">
2840                <info>
2841                  <desc>Allow</desc>
2842                </info>
2843              </enumeration>
2844              <enumeration oor:value="2">
2845                <info>
2846                  <desc>Deny</desc>
2847                </info>
2848              </enumeration>
2849            </constraints>
2850            <value>0</value>
2851          </prop>
2852          <prop oor:name="ZoneIntranet" oor:type="xs:int" oor:nillable="false">
2853            <info>
2854              <desc>Action needed for opening document with macro with Windows zone
2855              identifier URLZONE_INTRANET (1, local machine).</desc>
2856            </info>
2857            <constraints>
2858              <enumeration oor:value="0">
2859                <info>
2860                  <desc>Ask</desc>
2861                </info>
2862              </enumeration>
2863              <enumeration oor:value="1">
2864                <info>
2865                  <desc>Allow</desc>
2866                </info>
2867              </enumeration>
2868              <enumeration oor:value="2">
2869                <info>
2870                  <desc>Deny</desc>
2871                </info>
2872              </enumeration>
2873            </constraints>
2874            <value>0</value>
2875          </prop>
2876          <prop oor:name="ZoneTrusted" oor:type="xs:int" oor:nillable="false">
2877            <info>
2878              <desc>Action needed for opening document with macro with Windows zone
2879              identifier URLZONE_TRUSTED (2, trusted).</desc>
2880            </info>
2881            <constraints>
2882              <enumeration oor:value="0">
2883                <info>
2884                  <desc>Ask</desc>
2885                </info>
2886              </enumeration>
2887              <enumeration oor:value="1">
2888                <info>
2889                  <desc>Allow</desc>
2890                </info>
2891              </enumeration>
2892              <enumeration oor:value="2">
2893                <info>
2894                  <desc>Deny</desc>
2895                </info>
2896              </enumeration>
2897            </constraints>
2898            <value>0</value>
2899          </prop>
2900          <prop oor:name="ZoneInternet" oor:type="xs:int" oor:nillable="false">
2901            <info>
2902              <desc>Action needed for opening document with macro with Windows zone
2903              identifier URLZONE_INTERNET (3, internet).</desc>
2904            </info>
2905            <constraints>
2906              <enumeration oor:value="0">
2907                <info>
2908                  <desc>Ask</desc>
2909                </info>
2910              </enumeration>
2911              <enumeration oor:value="1">
2912                <info>
2913                  <desc>Allow</desc>
2914                </info>
2915              </enumeration>
2916              <enumeration oor:value="2">
2917                <info>
2918                  <desc>Deny</desc>
2919                </info>
2920              </enumeration>
2921            </constraints>
2922            <value>0</value>
2923          </prop>
2924          <prop oor:name="ZoneUntrusted" oor:type="xs:int" oor:nillable="false">
2925            <info>
2926              <desc>Action needed for opening document with macro with Windows zone
2927              identifier URLZONE_UNTRUSTED (3, untrusted source).</desc>
2928            </info>
2929            <constraints>
2930              <enumeration oor:value="0">
2931                <info>
2932                  <desc>Ask</desc>
2933                </info>
2934              </enumeration>
2935              <enumeration oor:value="1">
2936                <info>
2937                  <desc>Allow</desc>
2938                </info>
2939              </enumeration>
2940              <enumeration oor:value="2">
2941                <info>
2942                  <desc>Deny</desc>
2943                </info>
2944              </enumeration>
2945            </constraints>
2946            <value>0</value>
2947          </prop>
2948        </group>
2949      </group>
2950    </group>
2951    <group oor:name="View">
2952      <info>
2953        <desc>Contains window and dialog settings.</desc>
2954      </info>
2955      <group oor:name="NewDocumentHandling">
2956        <info>
2957          <desc>Contains settings to change new document window behavior.</desc>
2958        </info>
2959        <prop oor:name="ForceFocusAndToFront" oor:type="xs:boolean" oor:nillable="false">
2960          <info>
2961            <desc>Every new document window will be forced to front and grabs
2962            the focus.</desc>
2963          </info>
2964          <value>false</value>
2965        </prop>
2966      </group>
2967      <group oor:name="AppWindow">
2968        <info>
2969          <desc>Contains settings on how the application window should be
2970          displayed.</desc>
2971        </info>
2972        <prop oor:name="FullScreen" oor:type="xs:boolean" oor:nillable="false">
2973          <info>
2974            <desc>Specifies whether the application window should be opened in
2975            Fullscreen mode.</desc>
2976          </info>
2977          <value>false</value>
2978        </prop>
2979        <prop oor:name="Preference" oor:type="xs:int" oor:nillable="false">
2980          <info>
2981            <desc>Specifies the preferred view of the application window.</desc>
2982          </info>
2983          <constraints>
2984            <enumeration oor:value="0">
2985              <info>
2986                <desc>Use last setting</desc>
2987              </info>
2988            </enumeration>
2989            <enumeration oor:value="1">
2990              <info>
2991                <desc>Show in task bar</desc>
2992              </info>
2993            </enumeration>
2994            <enumeration oor:value="2">
2995              <info>
2996                <desc>Open in Fullscreen mode</desc>
2997              </info>
2998            </enumeration>
2999          </constraints>
3000          <value>0</value>
3001        </prop>
3002      </group>
3003      <group oor:name="Dialog">
3004        <info>
3005          <desc>Contains settings which specify how dialogs and toolbars should
3006          be displayed.</desc>
3007        </info>
3008        <prop oor:name="ButtonLarge" oor:type="xs:boolean" oor:nillable="false">
3009          <!-- UIHints: Tools  Options - General  View  [Section] Buttons -->
3010          <info>
3011            <desc>Specifies whether toolbar buttons should be drawn large or
3012            small. True means large.</desc>
3013            <label>Large buttons</label>
3014          </info>
3015          <value>false</value>
3016        </prop>
3017        <prop oor:name="ButtonFlat" oor:type="xs:boolean" oor:nillable="false">
3018          <!-- UIHints: Tools  Options - General  View  [Section] Buttons -->
3019          <info>
3020            <desc>Specifies whether toolbox buttons should be drawn with a flat
3021            or 3D design. True means flat design.</desc>
3022            <label>Flat buttons</label>
3023          </info>
3024          <value>true</value>
3025        </prop>
3026        <prop oor:name="MousePositioning" oor:type="xs:short" oor:nillable="false">
3027          <!-- UIHints: Tools  Options - General  View  [Section] Mouse
3028               positioning -->
3029          <info>
3030            <desc>Determines the automatic mouse positioning on dialogs: 0 -
3031            Default button 1 - Dialog center 2 - No automatic positioning</desc>
3032            <label>Mouse positioning</label>
3033          </info>
3034          <constraints>
3035            <enumeration oor:value="0">
3036              <info>
3037                <desc>Snap To Button</desc>
3038              </info>
3039            </enumeration>
3040            <enumeration oor:value="1">
3041              <info>
3042                <desc>Snap To Middle</desc>
3043              </info>
3044            </enumeration>
3045            <enumeration oor:value="2">
3046              <info>
3047                <desc>No Snap</desc>
3048              </info>
3049            </enumeration>
3050          </constraints>
3051          <value>2</value>
3052        </prop>
3053        <prop oor:name="MiddleMouseButton" oor:type="xs:short" oor:nillable="false">
3054          <!-- UIHints: Tools  Options - General  View  [Section] Middle mouse
3055               button -->
3056          <info>
3057            <desc>Determines the action assigned to the middle mouse button: 0 -
3058            No action 1 -Auto scroll 2 - Paste selection.</desc>
3059            <label>Middle mouse button</label>
3060          </info>
3061          <constraints>
3062            <enumeration oor:value="0">
3063              <info>
3064                <desc>No action</desc>
3065              </info>
3066            </enumeration>
3067            <enumeration oor:value="1">
3068              <info>
3069                <desc>Auto scroll</desc>
3070              </info>
3071            </enumeration>
3072            <enumeration oor:value="2">
3073              <info>
3074                <desc>Paste selection</desc>
3075              </info>
3076            </enumeration>
3077          </constraints>
3078          <value>1</value>
3079        </prop>
3080      </group>
3081      <group oor:name="Menu">
3082        <info>
3083          <desc>Contains menu view settings.</desc>
3084        </info>
3085        <prop oor:name="DontHideDisabledEntry" oor:type="xs:boolean" oor:nillable="false">
3086          <!-- UIHints: Tools - Options - General - View -->
3087          <info>
3088            <desc>Shows all deactivated menu entries. Menu commands that are
3089            normally not necessary are hidden by default.</desc>
3090          </info>
3091          <value>true</value>
3092        </prop>
3093        <prop oor:name="IsSystemIconsInMenus" oor:type="xs:boolean" oor:nillable="false">
3094          <info>
3095            <desc>Indicates whether icons in the office menus should
3096            shown/hidden by following the System theme.</desc>
3097          </info>
3098          <value>true</value>
3099        </prop>
3100        <prop oor:name="ShowIconsInMenues" oor:type="xs:boolean" oor:nillable="false">
3101          <!-- UIHints: Tools  Options - General  View  [Section] Options -->
3102          <info>
3103            <desc>Indicates whether icons in the office menus should be
3104            displayed.</desc>
3105          </info>
3106          <value>true</value>
3107        </prop>
3108        <prop oor:name="FollowMouse" oor:type="xs:boolean" oor:nillable="false">
3109          <!-- UIHints: Tools  Options - General  View  [Section] Options -->
3110          <info>
3111            <desc>Specifies automatic selection while moving the mouse over a
3112            menu (True).</desc>
3113            <label>Menu follows mouse pointer</label>
3114          </info>
3115          <value>true</value>
3116        </prop>
3117        <prop oor:name="ShortcutsInContextMenus" oor:type="xs:short" oor:nillable="false">
3118          <!-- UIHints: Tools  Options - General  View  [Section] Options -->
3119          <info>
3120            <desc>Indicates whether keyboard shortcuts should be displayed in
3121            context menus.</desc>
3122            <label>Shortcuts in context menus</label>
3123          </info>
3124          <constraints>
3125            <enumeration oor:value="0">
3126              <info>
3127                <desc>Hide</desc>
3128              </info>
3129            </enumeration>
3130            <enumeration oor:value="1">
3131              <info>
3132                <desc>Show</desc>
3133              </info>
3134            </enumeration>
3135            <enumeration oor:value="2">
3136              <info>
3137                <desc>Use the default setting for the current platform.</desc>
3138              </info>
3139            </enumeration>
3140          </constraints>
3141          <value>2</value>
3142        </prop>
3143      </group>
3144      <group oor:name="Window">
3145        <info>
3146          <desc>Contains settings for general windows used by the Office.</desc>
3147        </info>
3148        <prop oor:name="Drag" oor:type="xs:short" oor:nillable="false">
3149          <!-- UIHints: Tools  Options - General  View  [Section] Display -->
3150          <info>
3151            <desc>Specifies the representation of the window while
3152            dragging.</desc>
3153            <label>Window Drag</label>
3154          </info>
3155          <constraints>
3156            <enumeration oor:value="0">
3157              <info>
3158                <desc>With window contents</desc>
3159              </info>
3160            </enumeration>
3161            <enumeration oor:value="1">
3162              <info>
3163                <desc>Frame only</desc>
3164              </info>
3165            </enumeration>
3166            <enumeration oor:value="2">
3167              <info>
3168                <desc>From system settings</desc>
3169              </info>
3170            </enumeration>
3171          </constraints>
3172          <value>2</value>
3173        </prop>
3174        <prop oor:name="Key" oor:type="xs:int">
3175          <!-- Notice: LM: Description is missing
3176               5962Window=V1,995/150/280/321,H,0,AL:(16,4,0/0/400/250)#100 -->
3177          <info>
3178            <deprecated/>
3179            <desc>Deprecated.</desc>
3180          </info>
3181        </prop>
3182        <prop oor:name="Version" oor:type="xs:string" oor:nillable="false">
3183          <!-- Notice: LM: Description is missing -->
3184          <info>
3185            <deprecated/>
3186            <desc>Deprecated.</desc>
3187          </info>
3188          <value/>
3189          <!-- JB: Empty default inserted into empty property node. Remove if
3190               NIL was intended -->
3191        </prop>
3192        <prop oor:name="State" oor:type="xs:boolean" oor:nillable="false">
3193          <!-- Notice: LM: Description is missing -->
3194          <info>
3195            <deprecated/>
3196            <desc>Deprecated.</desc>
3197          </info>
3198          <value>false</value>
3199        </prop>
3200        <prop oor:name="Flag" oor:type="xs:int">
3201          <!-- Notice: LM: Description is missing -->
3202          <info>
3203            <deprecated/>
3204            <desc>Deprecated.</desc>
3205          </info>
3206          <constraints>
3207            <enumeration oor:value="01">
3208              <info>
3209                <desc>ZoomIn</desc>
3210              </info>
3211            </enumeration>
3212            <enumeration oor:value="02">
3213              <info>
3214                <desc>Small</desc>
3215              </info>
3216            </enumeration>
3217            <enumeration oor:value="04">
3218              <info>
3219                <desc>ForceDock</desc>
3220              </info>
3221            </enumeration>
3222            <enumeration oor:value="08">
3223              <info>
3224                <desc>AutoHide</desc>
3225              </info>
3226            </enumeration>
3227            <enumeration oor:value="10">
3228              <info>
3229                <desc>Task</desc>
3230              </info>
3231            </enumeration>
3232            <enumeration oor:value="20">
3233              <info>
3234                <desc>CantGetFocus</desc>
3235              </info>
3236            </enumeration>
3237          </constraints>
3238        </prop>
3239        <prop oor:name="UserData" oor:type="xs:string" oor:nillable="false">
3240          <!-- Notice: LM: Description is missing -->
3241          <info>
3242            <deprecated/>
3243            <desc>Deprecated.</desc>
3244          </info>
3245          <value/>
3246          <!-- JB: Empty default inserted into empty property node. Remove if
3247               NIL was intended -->
3248        </prop>
3249      </group>
3250      <group oor:name="FontAntiAliasing">
3251        <info>
3252          <desc>Font antialiasing properties</desc>
3253        </info>
3254        <prop oor:name="Enabled" oor:type="xs:boolean" oor:nillable="false">
3255          <info>
3256            <desc>Specifies font antialiasing properties</desc>
3257            <label>Font Antialiasing Enabled</label>
3258          </info>
3259          <value>true</value>
3260        </prop>
3261        <prop oor:name="MinPixelHeight" oor:type="xs:short" oor:nillable="false">
3262          <info>
3263            <desc>Specifies an additional limit if Font Antialiasing is enabled.
3264            Fonts that are smaller than the specified limit are not
3265            anti-aliased.</desc>
3266            <label>Font Antialiasing Minimum Pixel Height</label>
3267          </info>
3268          <value>8</value>
3269        </prop>
3270      </group>
3271    </group>
3272    <group oor:name="Undo">
3273      <info>
3274        <desc>Contains the settings regarding the undo operation in the
3275        Office.</desc>
3276      </info>
3277      <prop oor:name="Steps" oor:type="xs:int" oor:nillable="false">
3278        <!-- UIHints: Tools  Options - General  Save - [Section] Undo -->
3279        <info>
3280          <desc>Specifies how many operations can be undone in a row.</desc>
3281          <label>Number of steps</label>
3282        </info>
3283        <constraints>
3284          <minInclusive oor:value="1">
3285            <info>
3286              <desc>Specifies the lowest number of undo steps possible.</desc>
3287            </info>
3288          </minInclusive>
3289          <maxInclusive oor:value="1000">
3290            <info>
3291              <desc>Specifies the highest number of undo steps possible.</desc>
3292            </info>
3293          </maxInclusive>
3294        </constraints>
3295        <value>100</value>
3296      </prop>
3297    </group>
3298    <group oor:name="Setup">
3299      <info>
3300        <desc>Specifies options related to the setup.</desc>
3301      </info>
3302      <group oor:name="Language">
3303        <info>
3304          <desc>Specifies options related to the installed languages.</desc>
3305        </info>
3306        <prop oor:name="Locales" oor:type="oor:string-list">
3307          <!--The string list has to be filled by the setup-->
3308          <info>
3309            <desc>Contains the installed Office languages for the menus and
3310            dialogs.</desc>
3311          </info>
3312        </prop>
3313      </group>
3314    </group>
3315    <group oor:name="Print">
3316      <info>
3317        <desc>Specifies options related to printing.</desc>
3318      </info>
3319      <prop oor:name="PrintingModifiesDocument" oor:type="xs:boolean" oor:nillable="false">
3320        <!-- UIHints: Tools  Options - General  Print  [Section]
3321             PrinterOptions -->
3322        <info>
3323          <desc>Specifies if printing a document can modify a document due to
3324          reformatting</desc>
3325          <label>(PrinterOptions) PrintingModifiesDocument</label>
3326        </info>
3327        <value>false</value>
3328      </prop>
3329      <group oor:name="Warning">
3330        <info>
3331          <desc>Contains settings for print specific warnings.</desc>
3332        </info>
3333        <prop oor:name="PaperSize" oor:type="xs:boolean" oor:nillable="false">
3334          <!-- UIHints: Tools  Options - General  Print  [Section] Warnings -->
3335          <info>
3336            <desc>Specifies if a warning should be displayed in case the
3337            printout requires a specific paper size</desc>
3338            <label>(Warnings) Paper size</label>
3339          </info>
3340          <value>false</value>
3341        </prop>
3342        <prop oor:name="PaperOrientation" oor:type="xs:boolean" oor:nillable="false">
3343          <!-- UIHints: Tools  Options - General  Print  [Section] Warnings -->
3344          <info>
3345            <desc>Specifies if a warning should be displayed in case the
3346            printout requires a specific paper orientation</desc>
3347            <label>(Warnings) Paper orientation</label>
3348          </info>
3349          <value>false</value>
3350        </prop>
3351        <prop oor:name="NotFound" oor:type="xs:boolean" oor:nillable="false">
3352          <!-- UIHints: Tools  Options - General  Print  [Section] Warnings -->
3353          <info>
3354            <desc>Specifies if a warning should be displayed in case the printer
3355            defined in the document was not found</desc>
3356            <label>(Warnings) Not found</label>
3357          </info>
3358          <value>false</value>
3359        </prop>
3360        <prop oor:name="Transparency" oor:type="xs:boolean" oor:nillable="false">
3361          <!-- UIHints: Tools  Options - General  Print  [Section] Warnings -->
3362          <info>
3363            <desc>Specifies if a warning should be displayed in case the
3364            printout contains transparent objects.</desc>
3365            <label>(Warnings) Transparency</label>
3366          </info>
3367          <value>true</value>
3368        </prop>
3369      </group>
3370      <group oor:name="Option">
3371        <info>
3372          <desc>Specifies the options related to printing.</desc>
3373        </info>
3374        <group oor:name="Printer">
3375          <info>
3376            <desc>Specifies the options related to printing.</desc>
3377          </info>
3378          <prop oor:name="ReduceTransparency" oor:type="xs:boolean" oor:nillable="false">
3379            <!-- UIHints: Tools  Options - General  Print  [Section]
3380                 PrinterOptions -->
3381            <info>
3382              <desc>Indicates whether to ignore transparency for the output of
3383              objects.</desc>
3384              <label>(PrinterOptions) ReduceTransparency</label>
3385            </info>
3386            <value>false</value>
3387          </prop>
3388          <prop oor:name="ReducedTransparencyMode" oor:type="xs:short" oor:nillable="false">
3389            <!-- UIHints: Tools  Options - General  Print  [Section]
3390                 PrinterOptions -->
3391            <info>
3392              <desc>Specifies type of transparency reduction: 0 - Automatically
3393              determine reduction, 1 - Always disabled.</desc>
3394              <label>(PrinterOptions) ReducedTransparencyMode</label>
3395            </info>
3396            <value>0</value>
3397          </prop>
3398          <prop oor:name="ReduceGradients" oor:type="xs:boolean" oor:nillable="false">
3399            <!-- UIHints: Tools  Options - General  Print  [Section]
3400                 PrinterOptions -->
3401            <info>
3402              <desc>Indicates whether to reduce memory usage for output of
3403              gradients by limiting the number of gradient steps.</desc>
3404              <label>(PrinterOptions) ReduceGradients</label>
3405            </info>
3406            <value>false</value>
3407          </prop>
3408          <prop oor:name="ReducedGradientMode" oor:type="xs:short" oor:nillable="false">
3409            <!-- UIHints: Tools  Options - General  Print  [Section]
3410                 PrinterOptions -->
3411            <info>
3412              <desc>Specifies type of gradient reduction: 0 - reduce the number
3413              of stripes, 1 - reduce to color.</desc>
3414              <label>(PrinterOptions) ReducedGradientMode</label>
3415            </info>
3416            <value>0</value>
3417          </prop>
3418          <prop oor:name="ReducedGradientStepCount" oor:type="xs:short" oor:nillable="false">
3419            <!-- UIHints: Tools  Options - General  Print  [Section]
3420                 PrinterOptions -->
3421            <info>
3422              <desc>Specifies the maximum number stripes used for output of
3423              gradients.</desc>
3424              <label>(PrinterOptions) ReducedGradientStepCount</label>
3425            </info>
3426            <value>64</value>
3427          </prop>
3428          <prop oor:name="ReduceBitmaps" oor:type="xs:boolean" oor:nillable="false">
3429            <!-- UIHints: Tools  Options - General  Print  [Section]
3430                 PrinterOptions -->
3431            <info>
3432              <desc>Indicates whether to reduce the memory usage of bitmaps for
3433              print process by limiting the resolution.</desc>
3434              <label>(PrinterOptions) ReduceBitmaps</label>
3435            </info>
3436            <value>false</value>
3437          </prop>
3438          <prop oor:name="ReducedBitmapMode" oor:type="xs:short" oor:nillable="false">
3439            <!-- UIHints: Tools  Options - General  Print  [Section]
3440                 PrinterOptions -->
3441            <info>
3442              <desc>Specifies type of bitmap reduction: 0 - Automatically
3443              determine optimal resolution, 1 - Use original resolution, 2 -
3444              User defined resolution.</desc>
3445              <label>(PrinterOptions) ReducedBitmapMode</label>
3446            </info>
3447            <value>1</value>
3448          </prop>
3449          <prop oor:name="ReducedBitmapResolution" oor:type="xs:short" oor:nillable="false">
3450            <!-- UIHints: Tools  Options - General  Print  [Section]
3451                 PrinterOptions -->
3452            <info>
3453              <desc>Specifies resolution of reduced bitmaps: 0 - 72DPI, 1 -
3454              96DPI, 2 - 150DPI, 3 - 200DPI, 4 - 300DPI, 5 - 600DPI.</desc>
3455              <label>(PrinterOptions) ReducedBitmapResolution</label>
3456            </info>
3457            <value>3</value>
3458          </prop>
3459          <prop oor:name="ReducedBitmapIncludesTransparency" oor:type="xs:boolean" oor:nillable="false">
3460            <!-- UIHints: Tools  Options - General  Print  [Section]
3461                 PrinterOptions -->
3462            <info>
3463              <desc>Indicates whether to reduce the resolution of automatically
3464              created substitution bitmaps of transparent objects.</desc>
3465              <label>(PrinterOptions) ReducedBitmapIncludesTransparency</label>
3466            </info>
3467            <value>true</value>
3468          </prop>
3469          <prop oor:name="ConvertToGreyscales" oor:type="xs:boolean" oor:nillable="false">
3470            <!-- UIHints: Tools  Options - General  Print  [Section]
3471                 PrinterOptions -->
3472            <info>
3473              <desc>Indicates whether to create only grayscale output of all
3474              objects.</desc>
3475              <label>(PrinterOptions) ConvertToGreyscales</label>
3476            </info>
3477            <value>false</value>
3478          </prop>
3479          <prop oor:name="PDFAsStandardPrintJobFormat" oor:type="xs:boolean" oor:nillable="false">
3480            <!-- UIHints: Tools  Options - General  Print  [Section]
3481                 PrintFileOptions -->
3482            <info>
3483              <desc>Indicates whether PDF should be the Standard Print Job
3484              format</desc>
3485              <label>(PrinterOptions) PDFAsStandardPrintJobFormat</label>
3486            </info>
3487            <value>true</value>
3488          </prop>
3489        </group>
3490        <group oor:name="File">
3491          <info>
3492            <desc>Specifies the options for printing to a file.</desc>
3493            <label>Print File</label>
3494          </info>
3495          <prop oor:name="ReduceTransparency" oor:type="xs:boolean" oor:nillable="false">
3496            <!-- UIHints: Tools  Options - General  Print  [Section]
3497                 PrintFileOptions -->
3498            <info>
3499              <desc>Indicates whether to ignore transparency for the output of
3500              objects.</desc>
3501              <label>(PrintFileOptions) ReduceTransparency</label>
3502            </info>
3503            <value>false</value>
3504          </prop>
3505          <prop oor:name="ReducedTransparencyMode" oor:type="xs:short" oor:nillable="false">
3506            <!-- UIHints: Tools  Options - General  Print  [Section]
3507                 PrintFileOptions -->
3508            <info>
3509              <desc>Indicates the type of transparency reduction: 0 -
3510              Automatically determine reduction, 1 - Always disabled.</desc>
3511              <label>(PrintFileOptions) ReducedTransparencyMode</label>
3512            </info>
3513            <value>0</value>
3514          </prop>
3515          <prop oor:name="ReduceGradients" oor:type="xs:boolean" oor:nillable="false">
3516            <!-- UIHints: Tools  Options - General  Print  [Section]
3517                 PrintFileOptions -->
3518            <info>
3519              <desc>Indicates whether to reduce memory usage for output of
3520              gradients by limiting the number of gradient steps.</desc>
3521              <label>(PrintFileOptions) ReduceGradients</label>
3522            </info>
3523            <value>false</value>
3524          </prop>
3525          <prop oor:name="ReducedGradientMode" oor:type="xs:short" oor:nillable="false">
3526            <!-- UIHints: Tools  Options - General  Print  [Section]
3527                 PrintFileOptions -->
3528            <info>
3529              <desc>Indicates the type of gradient reduction: 0 - Reduce the
3530              number of stripes, 1 - Reduce to color.</desc>
3531              <label>(PrintFileOptions) ReducedGradientMode</label>
3532            </info>
3533            <value>0</value>
3534          </prop>
3535          <prop oor:name="ReducedGradientStepCount" oor:type="xs:short" oor:nillable="false">
3536            <!-- UIHints: Tools  Options - General  Print  [Section]
3537                 PrintFileOptions -->
3538            <info>
3539              <desc>Specifies the maximum number stripes used for output of
3540              gradients.</desc>
3541              <label>(PrintFileOptions) ReducedGradientStepCount</label>
3542            </info>
3543            <value>64</value>
3544          </prop>
3545          <prop oor:name="ReduceBitmaps" oor:type="xs:boolean" oor:nillable="false">
3546            <!-- UIHints: Tools  Options - General  Print  [Section]
3547                 PrintFileOptions -->
3548            <info>
3549              <desc>Indicates whether to reduce the memory usage of bitmaps for
3550              the print process by limiting the resolution.</desc>
3551              <label>(PrintFileOptions) ReduceBitmaps</label>
3552            </info>
3553            <value>false</value>
3554          </prop>
3555          <prop oor:name="ReducedBitmapMode" oor:type="xs:short" oor:nillable="false">
3556            <!-- UIHints: Tools  Options - General  Print  [Section]
3557                 PrintFileOptions -->
3558            <info>
3559              <desc>Specifies the type of bitmap reduction: 0 - Automatically
3560              determine optimal resolution, 1 - Use original resolution, 2 -
3561              User defined resolution.</desc>
3562              <label>(PrintFileOptions) ReducedBitmapMode</label>
3563            </info>
3564            <value>1</value>
3565          </prop>
3566          <prop oor:name="ReducedBitmapResolution" oor:type="xs:short" oor:nillable="false">
3567            <!-- UIHints: Tools  Options - General  Print  [Section]
3568                 PrintFileOptions -->
3569            <info>
3570              <desc>Specifies the resolution of reduced bitmaps: 0 - 72DPI, 1 -
3571              96DPI, 2 - 150DPI, 3 - 200DPI, 4 - 300DPI, 5 - 600DPI.</desc>
3572              <label>(PrintFileOptions) ReducedBitmapResolution</label>
3573            </info>
3574            <value>3</value>
3575          </prop>
3576          <prop oor:name="ReducedBitmapIncludesTransparency" oor:type="xs:boolean" oor:nillable="false">
3577            <!-- UIHints: Tools  Options - General  Print  [Section]
3578                 PrintFileOptions -->
3579            <info>
3580              <desc>Indicates whether to reduce the resolution of automatically
3581              created substitution bitmaps of transparent objects.</desc>
3582              <label>(PrintFileOptions)
3583              ReducedBitmapIncludesTransparency</label>
3584            </info>
3585            <value>true</value>
3586          </prop>
3587          <prop oor:name="ConvertToGreyscales" oor:type="xs:boolean" oor:nillable="false">
3588            <!-- UIHints: Tools  Options - General  Print  [Section]
3589                 PrintFileOptions -->
3590            <info>
3591              <desc>Indicates whether to create only grayscale output of all
3592              objects.</desc>
3593              <label>(PrintFileOptions) ConvertToGreyscales</label>
3594            </info>
3595            <value>false</value>
3596          </prop>
3597          <prop oor:name="PDFAsStandardPrintJobFormat" oor:type="xs:boolean" oor:nillable="false">
3598            <!-- UIHints: Tools  Options - General  Print  [Section]
3599                 PrintFileOptions -->
3600            <info>
3601              <desc>Indicates whether PDF should be the Standard Print Job
3602              format</desc>
3603              <label>(PrintFileOptions) PDFAsStandardPrintJobFormat</label>
3604            </info>
3605            <value>true</value>
3606          </prop>
3607        </group>
3608      </group>
3609      <group oor:name="Dialog">
3610        <info>
3611          <desc>User-settings on the printer dialog</desc>
3612        </info>
3613        <prop oor:name="RangeSectionExpanded" oor:type="xs:boolean" oor:nillable="false">
3614          <info>
3615            <desc>Determines whether the range section should be expanded.</desc>
3616          </info>
3617          <value>false</value>
3618        </prop>
3619        <prop oor:name="LayoutSectionExpanded" oor:type="xs:boolean" oor:nillable="false">
3620          <info>
3621            <desc>Determines whether the layout section should be expanded.</desc>
3622          </info>
3623          <value>false</value>
3624        </prop>
3625      </group>
3626    </group>
3627    <group oor:name="AddXMLToStorage">
3628      <info>
3629        <desc>Contains settings specifying if a XML package is added to the
3630        applications binary files.</desc>
3631      </info>
3632      <prop oor:name="Writer" oor:type="xs:boolean">
3633        <!-- UIHints: no -->
3634        <info>
3635          <desc>Defines if a XML package is added to the Writer binary
3636          files.</desc>
3637        </info>
3638      </prop>
3639      <prop oor:name="Calc" oor:type="xs:boolean">
3640        <!-- UIHints: no -->
3641        <info>
3642          <desc>Defines if a XML package is added to the Calc binary
3643          files.</desc>
3644        </info>
3645      </prop>
3646      <prop oor:name="Impress" oor:type="xs:boolean">
3647        <!-- UIHints: no -->
3648        <info>
3649          <desc>Defines if a XML package is added to the Impress binary
3650          files.</desc>
3651        </info>
3652      </prop>
3653      <prop oor:name="Draw" oor:type="xs:boolean">
3654        <!-- UIHints: no -->
3655        <info>
3656          <desc>Defines if a XML package is added to the Draw binary
3657          files.</desc>
3658        </info>
3659      </prop>
3660    </group>
3661    <group oor:name="UserColors">
3662      <info>
3663        <desc>Contains recent colors and custom colors</desc>
3664      </info>
3665      <prop oor:name="RecentColor" oor:type="oor:int-list" oor:nillable="false">
3666        <info>
3667          <desc>List of Recent colors</desc>
3668        </info>
3669        <value/>
3670      </prop>
3671      <prop oor:name="RecentColorName" oor:type="oor:string-list" oor:nillable="false">
3672        <info>
3673          <desc>List of Recent color names</desc>
3674        </info>
3675        <value/>
3676      </prop>
3677      <prop oor:name="PaletteName" oor:type="xs:string" oor:nillable="false">
3678        <info>
3679          <desc>Name of selected palette</desc>
3680        </info>
3681        <value>standard</value>
3682      </prop>
3683      <prop oor:name="CustomColor" oor:type="oor:int-list" oor:nillable="false">
3684        <info>
3685          <desc>List of Custom colors</desc>
3686        </info>
3687        <value/>
3688      </prop>
3689      <prop oor:name="CustomColorName" oor:type="oor:string-list" oor:nillable="false">
3690        <info>
3691          <desc>List of Custom color names</desc>
3692        </info>
3693        <value/>
3694      </prop>
3695    </group>
3696    <group oor:name="RecentCharacters">
3697      <info>
3698        <desc>Contains recent characters</desc>
3699      </info>
3700      <prop oor:name="RecentCharacterList" oor:type="oor:string-list" oor:nillable="false">
3701        <info>
3702          <desc>List of Recent characters</desc>
3703        </info>
3704        <value/>
3705      </prop>
3706      <prop oor:name="RecentCharacterFontList" oor:type="oor:string-list" oor:nillable="false">
3707        <info>
3708          <desc>List of Recent character font</desc>
3709        </info>
3710        <value/>
3711      </prop>
3712    </group>
3713    <group oor:name="FavoriteCharacters">
3714      <info>
3715        <desc>Contains Favorite characters</desc>
3716      </info>
3717      <prop oor:name="FavoriteCharacterList" oor:type="oor:string-list" oor:nillable="false">
3718        <info>
3719          <desc>List of Favorite characters</desc>
3720        </info>
3721        <value>
3722          <it>€</it>
3723          <it>¥</it>
3724          <it>£</it>
3725          <it>©</it>
3726          <it>Σ</it>
3727          <it>Ω</it>
3728          <it>≤</it>
3729          <it>≥</it>
3730          <it>∞</it>
3731          <it>π</it>
3732          <it>†</it>
3733          <it>‡</it>
3734        </value>
3735      </prop>
3736      <prop oor:name="FavoriteCharacterFontList" oor:type="oor:string-list" oor:nillable="false">
3737        <info>
3738          <desc>List of Favorite character font</desc>
3739        </info>
3740        <value>
3741          <it>Liberation Serif</it>
3742          <it>Liberation Serif</it>
3743          <it>Liberation Serif</it>
3744          <it>Liberation Serif</it>
3745          <it>Liberation Serif</it>
3746          <it>Liberation Serif</it>
3747          <it>Liberation Serif</it>
3748          <it>Liberation Serif</it>
3749          <it>Liberation Serif</it>
3750          <it>Liberation Serif</it>
3751          <it>Liberation Serif</it>
3752          <it>Liberation Serif</it>
3753        </value>
3754      </prop>
3755    </group>
3756    <group oor:name="Help">
3757      <info>
3758        <desc>Contains settings that specify the common help settings.</desc>
3759      </info>
3760      <prop oor:name="ShowBasic" oor:type="xs:boolean" oor:nillable="false">
3761        <info>
3762          <desc>Determines whether basic help should be shown.</desc>
3763        </info>
3764        <value>true</value>
3765      </prop>
3766      <prop oor:name="Locale" oor:type="xs:string" oor:nillable="false">
3767        <info>
3768          <desc>Determines the locale for the help pages.</desc>
3769        </info>
3770        <value/>
3771        <!-- JB: Empty default inserted into empty property node. Remove if NIL
3772             was intended -->
3773      </prop>
3774      <prop oor:name="System" oor:type="xs:string" oor:nillable="false">
3775        <info>
3776          <desc>Determines the operating system on which the help system is
3777          displayed.</desc>
3778        </info>
3779        <value/>
3780        <!-- JB: Empty default inserted into empty property node. Remove if NIL
3781             was intended -->
3782      </prop>
3783      <prop oor:name="Tip" oor:type="xs:boolean" oor:nillable="false">
3784        <!-- UIHints: Help menu-->
3785        <info>
3786          <desc>Activates the Tip help.</desc>
3787          <label>Tips</label>
3788        </info>
3789        <value>true</value>
3790      </prop>
3791      <prop oor:name="ExtendedTip" oor:type="xs:boolean" oor:nillable="false">
3792        <!-- UIHints: Help menu-->
3793        <info>
3794          <desc>Activates the Extended help.</desc>
3795          <label>Extended Tips</label>
3796        </info>
3797        <value>false</value>
3798      </prop>
3799      <prop oor:name="BuiltInHelpNotInstalledPopUp" oor:type="xs:boolean" oor:nillable="false">
3800        <info>
3801          <desc>Activates "Built-in help is not installed" pop-up</desc>
3802        </info>
3803        <value>true</value>
3804      </prop>
3805      <prop oor:name="HelpStyleSheet" oor:type="xs:string" oor:nillable="false">
3806        <info>
3807          <desc>Specifies the name of the stylesheet used to display help
3808          content.</desc>
3809        </info>
3810        <value>Default</value>
3811      </prop>
3812      <prop oor:name="HelpRootURL" oor:type="xs:string" oor:nillable="false">
3813        <info>
3814          <desc>Specifies the root URL to the Office help pages. Blank disables
3815          Help buttons on dialogs in LibreOffice Online.</desc>
3816        </info>
3817        <value>https://help.libreoffice.org/help.html?</value>
3818      </prop>
3819      <group oor:name="StartCenter">
3820        <info>
3821          <desc>Contains settings for the start center.</desc>
3822        </info>
3823        <prop oor:name="AddFeatureURL" oor:type="xs:string" oor:nillable="false">
3824          <info>
3825            <desc>Contains a string specifying the URL to be browsed for
3826            additional features (e.g. extensions)</desc>
3827          </info>
3828          <value/>
3829        </prop>
3830        <prop oor:name="InfoURL" oor:type="xs:string" oor:nillable="false">
3831          <info>
3832            <desc>Contains a string specifying the URL to be browsed for
3833            information about the product</desc>
3834          </info>
3835          <value/>
3836        </prop>
3837        <prop oor:name="TemplateRepositoryURL" oor:type="xs:string" oor:nillable="false">
3838          <info>
3839            <desc>Contains a string specifying the URL to be browsed for
3840            additional template documents</desc>
3841          </info>
3842          <value/>
3843        </prop>
3844        <prop oor:name="StartCenterThumbnailsBackgroundColor" oor:type="xs:int" oor:nillable="false">
3845          <!-- Default 6710886 = 0x666666 as specified in tdf#90452, comment 45 -->
3846          <info>
3847            <desc>Specifies the background color of the thumbnail area in the start center.</desc>
3848          </info>
3849          <value>6710886</value>
3850        </prop>
3851        <prop oor:name="StartCenterThumbnailsTextColor" oor:type="xs:int" oor:nillable="false">
3852          <!-- Default 15658734 = 0xeeeeee as specified in tdf#90452, comment 45 -->
3853          <info>
3854            <desc>Specifies the text color of the thumbnail area in the start center.</desc>
3855          </info>
3856          <value>15658734</value>
3857        </prop>
3858        <prop oor:name="StartCenterThumbnailsHighlightColor" oor:type="xs:int" oor:nillable="false">
3859          <!-- Default 14540253 = 0xdddddd as specified in tdf#90452, comment 45 -->
3860          <info>
3861            <desc>Specifies the background color of the highlight of a thumbnail in the start center.</desc>
3862          </info>
3863          <value>14540253</value>
3864        </prop>
3865        <prop oor:name="StartCenterThumbnailsHighlightTextColor" oor:type="xs:int" oor:nillable="false">
3866          <!-- Default 3355443 = 0x333333 as specified in tdf#90452, comment 45 -->
3867          <info>
3868            <desc>Specifies the text color of the highlight of a thumbnail in the start center.</desc>
3869          </info>
3870          <value>3355443</value>
3871        </prop>
3872      </group>
3873    </group>
3874    <group oor:name="Vectorize">
3875      <info>
3876        <desc>Specifies the options related to the vectorization of
3877        bitmaps.</desc>
3878      </info>
3879      <prop oor:name="ColorCount" oor:type="xs:short" oor:nillable="false">
3880        <!-- UIHints: Select bitmap =&gt; context menu  convert  To polygon -->
3881        <info>
3882          <desc>Specifies the number of colors that are used to create a vector
3883          graphic in Draw/Impress [UNIT=count].</desc>
3884          <label>Number of colors</label>
3885        </info>
3886        <constraints>
3887          <minInclusive oor:value="8">
3888            <info>
3889              <desc>Specifies that the lowest number that can be used to create
3890              a vector graphic is 8.</desc>
3891            </info>
3892          </minInclusive>
3893          <maxInclusive oor:value="32">
3894            <info>
3895              <desc>Specifies that the lowest number that can be used to create
3896              a vector graphic is 32.</desc>
3897            </info>
3898          </maxInclusive>
3899        </constraints>
3900        <value>8</value>
3901      </prop>
3902      <prop oor:name="PointReduce" oor:type="xs:short" oor:nillable="false">
3903        <!-- UIHints: Select bitmap =&gt; context menu  convert  To polygon -->
3904        <info>
3905          <desc>Specifies the number of pixels that you want to combine as a
3906          single pixel when creating a vector graphic.</desc>
3907          <label>Point reduction</label>
3908        </info>
3909        <constraints>
3910          <minInclusive oor:value="0">
3911            <info>
3912              <desc>Specifies the minimum value to reduce point is 0
3913              pixels.</desc>
3914            </info>
3915          </minInclusive>
3916          <maxInclusive oor:value="32">
3917            <info>
3918              <desc>Specifies the maximum value to reduce point is 32
3919              pixels.</desc>
3920            </info>
3921          </maxInclusive>
3922        </constraints>
3923        <value>0</value>
3924      </prop>
3925      <prop oor:name="FillHole" oor:type="xs:boolean" oor:nillable="false">
3926        <!-- UIHints: Select bitmap => context menu  convert  To polygon -->
3927        <info>
3928          <desc>Indicates whether to create a tiled background before
3929          vectorizing.</desc>
3930          <label>Fill holes</label>
3931        </info>
3932        <value>false</value>
3933      </prop>
3934      <prop oor:name="TileExtent" oor:type="xs:short" oor:nillable="false">
3935        <!-- UIHints: Select bitmap => context menu  convert  To polygon -->
3936        <info>
3937          <desc>Specifies the extent of background tiles that are used for
3938          vectorizing [UNIT=pixel].</desc>
3939          <label>Tile extent</label>
3940        </info>
3941        <constraints>
3942          <minInclusive oor:value="8">
3943            <info>
3944              <desc>Specifies that the minimum extent is 8 pixels.</desc>
3945            </info>
3946          </minInclusive>
3947          <maxInclusive oor:value="128">
3948            <info>
3949              <desc>Specifies that the maximum extent is 128 pixels.</desc>
3950            </info>
3951          </maxInclusive>
3952        </constraints>
3953        <value>32</value>
3954      </prop>
3955    </group>
3956    <group oor:name="DateFormat">
3957      <info>
3958        <desc>Specifies settings for the date formats used.</desc>
3959      </info>
3960      <prop oor:name="TwoDigitYear" oor:type="xs:int" oor:nillable="false">
3961        <!-- UIHints: Tools - Options - General - Other - Year (two digits) -->
3962        <info>
3963          <desc>Specifies the first year that can be entered using
3964          two-digit-year date formats.</desc>
3965          <label>First two-digit year</label>
3966        </info>
3967        <value>1930</value>
3968      </prop>
3969    </group>
3970    <group oor:name="Filter">
3971      <info>
3972        <desc>Specifies default settings of Microsoft-, Graphic- and HTML
3973        filters.</desc>
3974      </info>
3975      <group oor:name="Adobe">
3976        <info>
3977          <desc>Specifies default settings of Adobe filters.</desc>
3978        </info>
3979        <group oor:name="Import">
3980          <info>
3981            <desc>Specifies default settings of Adobe import filters.</desc>
3982          </info>
3983          <prop oor:name="PDFToDraw" oor:type="xs:boolean" oor:nillable="false">
3984            <info>
3985              <desc>Specifies if convertible PDF OLE objects are converted
3986              into Draw objects.</desc>
3987            </info>
3988            <value>true</value>
3989          </prop>
3990        </group>
3991      </group>
3992      <group oor:name="Microsoft">
3993        <info>
3994          <desc>Specifies default settings of Microsoft filters.</desc>
3995        </info>
3996        <group oor:name="Import">
3997          <info>
3998            <desc>Specifies default settings of Microsoft import filters.</desc>
3999          </info>
4000          <prop oor:name="MathTypeToMath" oor:type="xs:boolean" oor:nillable="false">
4001            <info>
4002              <desc>Specifies if convertible MathType OLE objects are converted
4003              into Math objects.</desc>
4004            </info>
4005            <value>true</value>
4006          </prop>
4007          <prop oor:name="WinWordToWriter" oor:type="xs:boolean" oor:nillable="false">
4008            <info>
4009              <desc>Specifies if convertible WinWord OLE objects are converted
4010              into Writer objects.</desc>
4011            </info>
4012            <value>true</value>
4013          </prop>
4014          <prop oor:name="ExcelToCalc" oor:type="xs:boolean" oor:nillable="false">
4015            <info>
4016              <desc>Specifies if convertible Excel OLE objects are converted
4017              into Calc objects.</desc>
4018            </info>
4019            <value>true</value>
4020          </prop>
4021          <prop oor:name="PowerPointToImpress" oor:type="xs:boolean" oor:nillable="false">
4022            <info>
4023              <desc>Specifies if convertible PowerPoint OLE objects are
4024              converted into Impress objects.</desc>
4025            </info>
4026            <value>true</value>
4027          </prop>
4028          <prop oor:name="SmartArtToShapes" oor:type="xs:boolean" oor:nillable="false">
4029            <info>
4030              <desc>Specifies if OOXML SmartArt objects are converted into LO shapes.</desc>
4031            </info>
4032            <value>false</value>
4033          </prop>
4034          <prop oor:name="ImportWWFieldsAsEnhancedFields" oor:type="xs:boolean" oor:nillable="false">
4035            <info>
4036              <desc>Flag to control use of enhanced fields.</desc>
4037            </info>
4038            <value>true</value>
4039          </prop>
4040          <prop oor:name="ForceImportWWFieldsAsGenericFields" oor:type="xs:boolean" oor:nillable="false">
4041            <info>
4042              <desc>Experimental: force all fields in RTF/DOCX to be imported as dumb generic enhanced fields.</desc>
4043            </info>
4044            <value>false</value>
4045          </prop>
4046          <prop oor:name="CreateMSOLockFiles" oor:type="xs:boolean" oor:nillable="false">
4047            <info>
4048              <desc>Specifies if LO should create MSO lock files next to the LO lock files
4049              when opening a file. This makes MSO to be able to read the user name from
4050              the lock file and show it for the user.</desc>
4051            </info>
4052            <value>false</value>
4053          </prop>
4054          <prop oor:name="VisioToDraw" oor:type="xs:boolean" oor:nillable="false">
4055            <info>
4056              <desc>Specifies if convertible Visio OLE objects are converted
4057              into Draw objects.</desc>
4058            </info>
4059            <value>true</value>
4060          </prop>
4061        </group>
4062        <group oor:name="Export">
4063          <info>
4064            <desc>Specifies default settings of Microsoft export filters.</desc>
4065          </info>
4066          <prop oor:name="MathToMathType" oor:type="xs:boolean" oor:nillable="false">
4067            <info>
4068              <desc>Specifies if embedded Math objects are converted into
4069              MathType objects.</desc>
4070            </info>
4071            <value>true</value>
4072          </prop>
4073          <prop oor:name="WriterToWinWord" oor:type="xs:boolean" oor:nillable="false">
4074            <info>
4075              <desc>Specifies if embedded Writer objects are converted into
4076              WinWord objects.</desc>
4077            </info>
4078            <value>true</value>
4079          </prop>
4080          <prop oor:name="CalcToExcel" oor:type="xs:boolean" oor:nillable="false">
4081            <info>
4082              <desc>Specifies if embedded Calc objects are converted into Excel
4083              objects.</desc>
4084            </info>
4085            <value>true</value>
4086          </prop>
4087          <prop oor:name="ImpressToPowerPoint" oor:type="xs:boolean" oor:nillable="false">
4088            <info>
4089              <desc>Specifies if embedded Impress objects are converted into
4090              PowerPoint objects.</desc>
4091            </info>
4092            <value>true</value>
4093          </prop>
4094          <prop oor:name="EnablePowerPointPreview" oor:type="xs:boolean" oor:nillable="false">
4095            <info>
4096              <desc>Specifies if previews are created when saving PowerPoint
4097              documents.</desc>
4098            </info>
4099            <value>true</value>
4100          </prop>
4101          <prop oor:name="EnableExcelPreview" oor:type="xs:boolean" oor:nillable="false">
4102            <info>
4103              <desc>Specifies if previews are created when saving Excel
4104              documents.</desc>
4105            </info>
4106            <value>false</value>
4107          </prop>
4108          <prop oor:name="EnableWordPreview" oor:type="xs:boolean" oor:nillable="false">
4109            <info>
4110              <desc>Specifies if previews are created when saving Word
4111              documents.</desc>
4112            </info>
4113            <value>false</value>
4114          </prop>
4115          <prop oor:name="CharBackgroundToHighlighting" oor:type="xs:boolean" oor:nillable="false">
4116            <info>
4117              <desc>Specifies if character background is exported as highlighting
4118              (and not as shading) when saving to Word document</desc>
4119            </info>
4120            <value>false</value>
4121          </prop>
4122        </group>
4123      </group>
4124      <group oor:name="Graphic">
4125        <info>
4126          <desc>Specifies default settings of graphic import and export
4127          dialogs.</desc>
4128        </info>
4129        <group oor:name="Import">
4130          <info>
4131            <desc>Specifies default settings of graphic import dialogs.</desc>
4132          </info>
4133          <group oor:name="PCD">
4134            <info>
4135              <desc>Specifies default settings of the PCD - Photo CD Base import
4136              dialog.</desc>
4137            </info>
4138            <prop oor:name="Resolution" oor:type="xs:int" oor:nillable="false">
4139              <info>
4140                <desc>Specifies import resolution of PCD graphics.</desc>
4141                <label>Resolution - Base16 / Base4 / Base</label>
4142              </info>
4143              <constraints>
4144                <enumeration oor:value="0">
4145                  <info>
4146                    <desc>PCD-Base16, 192*128 PCD graphic.</desc>
4147                  </info>
4148                </enumeration>
4149                <enumeration oor:value="1">
4150                  <info>
4151                    <desc>PCD-Base4, 384*256 PCD graphic.</desc>
4152                  </info>
4153                </enumeration>
4154                <enumeration oor:value="2">
4155                  <info>
4156                    <desc>PCD-Base, 768*512 PCD graphic.</desc>
4157                  </info>
4158                </enumeration>
4159              </constraints>
4160              <value>2</value>
4161            </prop>
4162          </group>
4163        </group>
4164        <group oor:name="Export">
4165          <info>
4166            <desc>Specifies default settings of graphic export dialogs.</desc>
4167          </info>
4168          <prop oor:name="PixelExportUnit" oor:type="xs:int" oor:nillable="false">
4169            <info>
4170              <desc>Specifies the unit default that is used in the graphic
4171              export dialog if exporting pixel graphics.</desc>
4172            </info>
4173            <constraints>
4174              <enumeration oor:value="0">
4175                <info>
4176                  <desc>inches</desc>
4177                </info>
4178              </enumeration>
4179              <enumeration oor:value="1">
4180                <info>
4181                  <desc>cm</desc>
4182                </info>
4183              </enumeration>
4184              <enumeration oor:value="2">
4185                <info>
4186                  <desc>mm</desc>
4187                </info>
4188              </enumeration>
4189              <enumeration oor:value="3">
4190                <info>
4191                  <desc>points</desc>
4192                </info>
4193              </enumeration>
4194              <enumeration oor:value="4">
4195                <info>
4196                  <desc>pica</desc>
4197                </info>
4198              </enumeration>
4199              <enumeration oor:value="5">
4200                <info>
4201                  <desc>pixels</desc>
4202                </info>
4203              </enumeration>
4204              <enumeration oor:value="-1">
4205                <info>
4206                  <desc>default (depends to the metric settings in
4207                  tools/options)</desc>
4208                </info>
4209              </enumeration>
4210            </constraints>
4211            <value>-1</value>
4212          </prop>
4213          <prop oor:name="PixelExportResolutionUnit" oor:type="xs:int" oor:nillable="false">
4214            <info>
4215              <desc>Specifies the unit default for the resolution that is used
4216              in the graphic export dialog if exporting pixel
4217              graphics.</desc>
4218            </info>
4219            <constraints>
4220              <enumeration oor:value="0">
4221                <info>
4222                  <desc>pixels/inch</desc>
4223                </info>
4224              </enumeration>
4225              <enumeration oor:value="1">
4226                <info>
4227                  <desc>pixels/cm</desc>
4228                </info>
4229              </enumeration>
4230              <enumeration oor:value="2">
4231                <info>
4232                  <desc>pixels/meter</desc>
4233                </info>
4234              </enumeration>
4235            </constraints>
4236            <value>0</value>
4237          </prop>
4238          <prop oor:name="PixelExportResolution" oor:type="xs:int" oor:nillable="false">
4239            <info>
4240              <desc>Specifies the logical width of a graphic.
4241              [UNIT=1/100 mm].</desc>
4242            </info>
4243            <constraints>
4244              <minInclusive oor:value="1">
4245                <info>
4246                  <desc>Represents the lowest value that can be entered in the
4247                  dialog.</desc>
4248                </info>
4249              </minInclusive>
4250            </constraints>
4251            <value>96</value>
4252          </prop>
4253          <prop oor:name="MaxFilesizeForRealtimePreview" oor:type="xs:int" oor:nillable="false">
4254            <info>
4255              <desc>Specifies the maximum raw graphic size in bytes up to which
4256              the realtime preview is enabled, for fast computers this value may
4257              be enlarged</desc>
4258            </info>
4259            <value>4000000</value>
4260          </prop>
4261          <prop oor:name="VectorExportUnit" oor:type="xs:int" oor:nillable="false">
4262            <info>
4263              <desc>Specifies the unit default that is used in the graphic
4264              export dialog if exporting vector graphics.</desc>
4265            </info>
4266            <constraints>
4267              <enumeration oor:value="0">
4268                <info>
4269                  <desc>inches</desc>
4270                </info>
4271              </enumeration>
4272              <enumeration oor:value="1">
4273                <info>
4274                  <desc>cm</desc>
4275                </info>
4276              </enumeration>
4277              <enumeration oor:value="2">
4278                <info>
4279                  <desc>mm</desc>
4280                </info>
4281              </enumeration>
4282              <enumeration oor:value="3">
4283                <info>
4284                  <desc>points</desc>
4285                </info>
4286              </enumeration>
4287              <enumeration oor:value="4">
4288                <info>
4289                  <desc>pica</desc>
4290                </info>
4291              </enumeration>
4292              <enumeration oor:value="-1">
4293                <info>
4294                  <desc>default (depends to the metric settings in
4295                  tools/options)</desc>
4296                </info>
4297              </enumeration>
4298            </constraints>
4299            <value>-1</value>
4300          </prop>
4301          <group oor:name="BMP">
4302            <info>
4303              <desc>Specifies default settings of the Windows Bitmap export
4304              dialog.</desc>
4305            </info>
4306            <prop oor:name="Color" oor:type="xs:int" oor:nillable="false">
4307              <!-- UIHints: File  Export  Filetype  BMP-MS Windows - [dialog]
4308                   BMP Options -->
4309              <info>
4310                <desc>Specifies the number of colors that are to be used for the
4311                export.</desc>
4312                <label>Color resolution</label>
4313              </info>
4314              <constraints>
4315                <enumeration oor:value="0">
4316                  <info>
4317                    <desc>Original</desc>
4318                  </info>
4319                </enumeration>
4320                <enumeration oor:value="1">
4321                  <info>
4322                    <desc>1 bit, 1 bit threshold</desc>
4323                  </info>
4324                </enumeration>
4325                <enumeration oor:value="2">
4326                  <info>
4327                    <desc>1 bit, 1 bit dithered</desc>
4328                  </info>
4329                </enumeration>
4330                <enumeration oor:value="3">
4331                  <info>
4332                    <desc>4 bit, 4 bit grayscale</desc>
4333                  </info>
4334                </enumeration>
4335                <enumeration oor:value="4">
4336                  <info>
4337                    <desc>4 bit, 4 bit color palette</desc>
4338                  </info>
4339                </enumeration>
4340                <enumeration oor:value="5">
4341                  <info>
4342                    <desc>8 bit, 8 bit grayscale color</desc>
4343                  </info>
4344                </enumeration>
4345                <enumeration oor:value="6">
4346                  <info>
4347                    <desc>8 bit, 8 bit color palette</desc>
4348                  </info>
4349                </enumeration>
4350                <enumeration oor:value="7">
4351                  <info>
4352                    <desc>24 bit, 24 bit true color</desc>
4353                  </info>
4354                </enumeration>
4355              </constraints>
4356              <value>0</value>
4357            </prop>
4358            <prop oor:name="RLE_Coding" oor:type="xs:boolean" oor:nillable="false">
4359              <!-- UIHints: File  Export  Filetype  BMP-MS Windows - [dialog]
4360                   BMP Options -->
4361              <info>
4362                <desc>Specifies if Run-Length-Encoding should be used in the
4363                export.</desc>
4364                <label>RLE coding</label>
4365              </info>
4366              <value>true</value>
4367            </prop>
4368          </group>
4369          <group oor:name="EPS">
4370            <!-- UIHints: File  Export  Filetype File  Export  Filetype
4371                 EPS-Encapsulated Postscript -->
4372            <info>
4373              <desc>Specifies default settings of the EPS - Encapsulated
4374              Postscript export dialog.</desc>
4375            </info>
4376            <prop oor:name="Preview" oor:type="xs:int" oor:nillable="false">
4377              <info>
4378                <desc>Specifies if a preview graphic should be exported together
4379                with the Encapsulated PostScript file. Due to the fact that most
4380                programs can't render eps graphics, it is useful to provide a
4381                preview that can be displayed as replacement. The preview
4382                graphic will also be printed if the printer is not capable of
4383                Postscript.</desc>
4384                <label>Preview - Picture preview (TIFF) / Interchange
4385                (EPSI)</label>
4386              </info>
4387              <constraints>
4388                <enumeration oor:value="0">
4389                  <info>
4390                    <desc>None</desc>
4391                  </info>
4392                </enumeration>
4393                <enumeration oor:value="1">
4394                  <info>
4395                    <desc>TIFF</desc>
4396                  </info>
4397                </enumeration>
4398                <enumeration oor:value="2">
4399                  <info>
4400                    <desc>Interchange (EPSI) - 1 bit color resolution</desc>
4401                  </info>
4402                </enumeration>
4403                <enumeration oor:value="3">
4404                  <info>
4405                    <desc>TIFF and EPSI</desc>
4406                  </info>
4407                </enumeration>
4408              </constraints>
4409              <value>0</value>
4410            </prop>
4411            <prop oor:name="Version" oor:type="xs:int" oor:nillable="false">
4412              <info>
4413                <desc>Specifies the PostScript version that has to be used for
4414                the EPS export. Because not every PostScript printer is capable
4415                of version 2 PostScript, it is sometimes necessary to create
4416                version 1 PostScript graphics. PostScript Level 1 does not
4417                support color and bitmap compression.</desc>
4418                <label>Version - Level 1 / Level 2</label>
4419              </info>
4420              <constraints>
4421                <enumeration oor:value="1">
4422                  <info>
4423                    <desc>Version 1 PostScript</desc>
4424                  </info>
4425                </enumeration>
4426                <enumeration oor:value="2">
4427                  <info>
4428                    <desc>Version 2 PostScript</desc>
4429                  </info>
4430                </enumeration>
4431              </constraints>
4432              <value>2</value>
4433            </prop>
4434            <prop oor:name="ColorFormat" oor:type="xs:int" oor:nillable="false">
4435              <info>
4436                <desc>Specifies if color or grayscale format is used for the EPS
4437                export. This option is not available for version 1 PostScript
4438                files.</desc>
4439                <label>Color format - Color / Grayscale</label>
4440              </info>
4441              <constraints>
4442                <enumeration oor:value="1">
4443                  <info>
4444                    <desc>Color format</desc>
4445                  </info>
4446                </enumeration>
4447                <enumeration oor:value="2">
4448                  <info>
4449                    <desc>Grayscale format</desc>
4450                  </info>
4451                </enumeration>
4452              </constraints>
4453              <value>2</value>
4454            </prop>
4455            <prop oor:name="CompressionMode" oor:type="xs:int" oor:nillable="false">
4456              <info>
4457                <desc>Specifies if bitmaps are exported by using the LZW (Lempel
4458                - Ziv - Welch) compression algorithm. Compression is only
4459                available for level 2 PostScript files.</desc>
4460                <label>Compression - LZW encoding / None</label>
4461              </info>
4462              <constraints>
4463                <enumeration oor:value="1">
4464                  <info>
4465                    <desc>LZW compression</desc>
4466                  </info>
4467                </enumeration>
4468                <enumeration oor:value="2">
4469                  <info>
4470                    <desc>No compression</desc>
4471                  </info>
4472                </enumeration>
4473              </constraints>
4474              <value>2</value>
4475            </prop>
4476            <prop oor:name="TextMode" oor:type="xs:int" oor:nillable="false">
4477              <info>
4478                <desc>Specifies if glyph outlines are exported. They produce the
4479                highest quality and it is the only possible way to create EPS
4480                files that are CJK compliant. Not using glyphs will produce
4481                smaller files, but it might lead to problems if not all fonts
4482                are available during printing.</desc>
4483                <label>Export text using glyph outlines - always / never</label>
4484              </info>
4485              <constraints>
4486                <enumeration oor:value="0">
4487                  <info>
4488                    <desc>Glyph outlines</desc>
4489                  </info>
4490                </enumeration>
4491                <enumeration oor:value="1">
4492                  <info>
4493                    <desc>No glyph outlines</desc>
4494                  </info>
4495                </enumeration>
4496              </constraints>
4497              <value>0</value>
4498            </prop>
4499          </group>
4500          <group oor:name="GIF">
4501            <info>
4502              <desc>Specifies default settings of the GIF - Graphics Interchange
4503              export dialog.</desc>
4504            </info>
4505            <prop oor:name="Interlaced" oor:type="xs:int" oor:nillable="false">
4506              <!-- UIHints: File  Export  Filetype  GIF-Graphics Interchange -->
4507              <info>
4508                <desc>Specifies if graphics should be exported using interlace.
4509                It is recommended for big pictures to activate interlace, so the
4510                content can be displayed immediately when loading the
4511                picture.</desc>
4512              </info>
4513              <constraints>
4514                <enumeration oor:value="0">
4515                  <info>
4516                    <desc>Deactivate</desc>
4517                  </info>
4518                </enumeration>
4519                <enumeration oor:value="1">
4520                  <info>
4521                    <desc>Activate</desc>
4522                  </info>
4523                </enumeration>
4524              </constraints>
4525              <value>1</value>
4526            </prop>
4527            <prop oor:name="Translucent" oor:type="xs:int" oor:nillable="false">
4528              <!-- UIHints: File  Export  Filetype  GIF-Graphics Interchange -->
4529              <info>
4530                <desc>Specifies if the graphic background is stored as
4531                transparent.</desc>
4532              </info>
4533              <constraints>
4534                <enumeration oor:value="0">
4535                  <info>
4536                    <desc>No transparency</desc>
4537                  </info>
4538                </enumeration>
4539                <enumeration oor:value="1">
4540                  <info>
4541                    <desc>Transparency</desc>
4542                  </info>
4543                </enumeration>
4544              </constraints>
4545              <value>1</value>
4546            </prop>
4547          </group>
4548          <group oor:name="JPG">
4549            <info>
4550              <desc>Specifies default settings of the JPEG - Joint Photographic
4551              Experts Group export dialog.</desc>
4552            </info>
4553            <prop oor:name="Quality" oor:type="xs:int" oor:nillable="false">
4554              <!-- UIHints: File  Export  Filetype  JPG-JPEG -->
4555              <info>
4556                <desc>Specifies quality of the JPG export. A higher value
4557                results in higher quality and file size.</desc>
4558              </info>
4559              <constraints>
4560                <minInclusive oor:value="1">
4561                  <info>
4562                    <desc>Represents lowest value that can be used. The lower
4563                    the value, the less good is the compression quality and the
4564                    bigger is be the file size.</desc>
4565                  </info>
4566                </minInclusive>
4567                <maxInclusive oor:value="100">
4568                  <info>
4569                    <desc>Represents highest value that can be used. The higher
4570                    the value, the better is the compression quality and the
4571                    smaller is the file size.</desc>
4572                  </info>
4573                </maxInclusive>
4574              </constraints>
4575              <value>75</value>
4576            </prop>
4577            <prop oor:name="ColorMode" oor:type="xs:int" oor:nillable="false">
4578              <!-- UIHints: File  Export  Filetype  JPG-JPEG -->
4579              <info>
4580                <desc>Specifies if graphics are exported using true color or
4581                grayscale.</desc>
4582              </info>
4583              <constraints>
4584                <enumeration oor:value="0">
4585                  <info>
4586                    <desc>True colors</desc>
4587                  </info>
4588                </enumeration>
4589                <enumeration oor:value="1">
4590                  <info>
4591                    <desc>Grayscale</desc>
4592                  </info>
4593                </enumeration>
4594              </constraints>
4595              <value>0</value>
4596            </prop>
4597          </group>
4598          <group oor:name="PBM">
4599            <info>
4600              <desc>Specifies default settings of the PBM - Portable Bitmap
4601              export dialog.</desc>
4602            </info>
4603            <prop oor:name="FileFormat" oor:type="xs:int" oor:nillable="false">
4604              <!-- UIHints: File  Export  Filetype  PBM-Portable Bitmap -->
4605              <info>
4606                <desc>Specifies if graphics are exported to binary- or ASCII
4607                format.</desc>
4608              </info>
4609              <constraints>
4610                <enumeration oor:value="0">
4611                  <info>
4612                    <desc>Binary</desc>
4613                  </info>
4614                </enumeration>
4615                <enumeration oor:value="1">
4616                  <info>
4617                    <desc>ASCII</desc>
4618                  </info>
4619                </enumeration>
4620              </constraints>
4621              <value>1</value>
4622            </prop>
4623          </group>
4624          <group oor:name="PGM">
4625            <info>
4626              <desc>Specifies default settings of the PGM - Portable Graymap
4627              export dialog.</desc>
4628            </info>
4629            <prop oor:name="FileFormat" oor:type="xs:int" oor:nillable="false">
4630              <!-- UIHints: File  Export  Filetype  PGM-Portable Graymap -->
4631              <info>
4632                <desc>Specifies if graphics are exported to a binary- or ASCII
4633                format.</desc>
4634              </info>
4635              <constraints>
4636                <enumeration oor:value="0">
4637                  <info>
4638                    <desc>Binary</desc>
4639                  </info>
4640                </enumeration>
4641                <enumeration oor:value="1">
4642                  <info>
4643                    <desc>ASCII</desc>
4644                  </info>
4645                </enumeration>
4646              </constraints>
4647              <value>1</value>
4648            </prop>
4649          </group>
4650          <group oor:name="PPM">
4651            <info>
4652              <desc>Specifies default settings of the PPM - Portable Pixelmap
4653              export dialog.</desc>
4654            </info>
4655            <prop oor:name="FileFormat" oor:type="xs:int" oor:nillable="false">
4656              <!-- UIHints: File  Export  Filetype  PPM-Portable Pixelmap -->
4657              <info>
4658                <desc>Specifies if graphics are exported to a binary- or ASCII
4659                format.</desc>
4660              </info>
4661              <constraints>
4662                <enumeration oor:value="0">
4663                  <info>
4664                    <desc>Binary</desc>
4665                  </info>
4666                </enumeration>
4667                <enumeration oor:value="1">
4668                  <info>
4669                    <desc>ASCII</desc>
4670                  </info>
4671                </enumeration>
4672              </constraints>
4673              <value>1</value>
4674            </prop>
4675          </group>
4676          <group oor:name="PNG">
4677            <info>
4678              <desc>Specifies default settings of the PNG - Portable Network
4679              Graphic export dialog.</desc>
4680            </info>
4681            <prop oor:name="Compression" oor:type="xs:int" oor:nillable="false">
4682              <!-- UIHints: File  Export  Filetype  PNG-Portable Network
4683                   Graphic -->
4684              <info>
4685                <desc>Specifies export compression settings which ranges from 0
4686                (no compression) to 9 (maximum compression). The calculating
4687                time increases with an ascending compression value.</desc>
4688              </info>
4689              <constraints>
4690                <minInclusive oor:value="0">
4691                  <info>
4692                    <desc>Represents lowest value that can be used. The lower
4693                    the value, the lower the compression quality and the larger
4694                    the file size.</desc>
4695                  </info>
4696                </minInclusive>
4697                <maxInclusive oor:value="9">
4698                  <info>
4699                    <desc>Represents the highest value that can be used. The
4700                    higher the value, the higher the compression quality and the
4701                    smaller the file size.</desc>
4702                  </info>
4703                </maxInclusive>
4704              </constraints>
4705              <value>6</value>
4706            </prop>
4707            <prop oor:name="Interlaced" oor:type="xs:int" oor:nillable="false">
4708              <!-- UIHints: File  Export  Filetype  PNG-Portable Network
4709                   Graphic -->
4710              <info>
4711                <desc>Specifies if graphics should be exported using interlace.
4712                It is recommended for big pictures to activate interlace, so the
4713                content can be displayed immediately when loading the
4714                picture.</desc>
4715              </info>
4716              <constraints>
4717                <enumeration oor:value="0">
4718                  <info>
4719                    <desc>Deactivate interlace mode</desc>
4720                  </info>
4721                </enumeration>
4722                <enumeration oor:value="1">
4723                  <info>
4724                    <desc>Activate interlace mode</desc>
4725                  </info>
4726                </enumeration>
4727              </constraints>
4728              <value>1</value>
4729            </prop>
4730            <prop oor:name="Translucent" oor:type="xs:int" oor:nillable="false">
4731              <!-- UIHints: File  Export  Filetype  PNG-Portable Network Graphics -->
4732              <info>
4733                <desc>Specifies if the graphic background is stored as
4734                transparent.</desc>
4735              </info>
4736              <constraints>
4737                <enumeration oor:value="0">
4738                  <info>
4739                    <desc>No transparency</desc>
4740                  </info>
4741                </enumeration>
4742                <enumeration oor:value="1">
4743                  <info>
4744                    <desc>Transparency</desc>
4745                  </info>
4746                </enumeration>
4747              </constraints>
4748              <value>1</value>
4749            </prop>
4750          </group>
4751          <group oor:name="SVG">
4752            <info>
4753              <desc>Specifies default settings of SVG export dialog.</desc>
4754            </info>
4755            <prop oor:name="TinyMode" oor:type="xs:boolean" oor:nillable="false">
4756              <info>
4757                <desc>Specifies if SVG Tiny profile should be used for
4758                export.</desc>
4759              </info>
4760              <value>false</value>
4761            </prop>
4762            <prop oor:name="EmbedFonts" oor:type="xs:boolean" oor:nillable="false">
4763              <info>
4764                <desc>Specifies if fonts should be embedded into SVG
4765                file.</desc>
4766              </info>
4767              <value>true</value>
4768            </prop>
4769            <prop oor:name="UseNativeTextDecoration" oor:type="xs:boolean" oor:nillable="false">
4770              <info>
4771                <desc>Specifies if text decoration like underlining and
4772                strike-through be drawn by using SVG attributes (true) or by
4773                drawing SVG primitives (false).</desc>
4774              </info>
4775              <value>true</value>
4776            </prop>
4777          </group>
4778        </group>
4779      </group>
4780      <group oor:name="HTML">
4781        <info>
4782          <desc>Contains settings for HTML import/export.</desc>
4783        </info>
4784        <group oor:name="Import">
4785          <info>
4786            <desc>Contains settings for HTML import.</desc>
4787          </info>
4788          <prop oor:name="NumbersEnglishUS" oor:type="xs:boolean" oor:nillable="false">
4789            <!-- UIHints: Tools  Options  Load/Save - HTML Compatibility [Section]
4790                 Import -->
4791            <info>
4792              <desc>Specifies if numbers should be parsed according to the en-US
4793              locale instead of the user's locale.</desc>
4794              <label>Use 'English (USA)' locale for numbers</label>
4795            </info>
4796            <value>false</value>
4797          </prop>
4798          <prop oor:name="UnknownTag" oor:type="xs:boolean" oor:nillable="false">
4799            <!-- UIHints: Tools  Options - Browser  HTML [Section] Import -->
4800            <info>
4801              <desc>Specifies if unknown tags should be imported as
4802              fields.</desc>
4803              <label>Import unknown HTML tags as fields</label>
4804            </info>
4805            <value>false</value>
4806          </prop>
4807          <prop oor:name="FontSetting" oor:type="xs:boolean" oor:nillable="false">
4808            <!-- UIHints: Tools  Options - Browser  HTML [Section] Import -->
4809            <info>
4810              <desc>Specifies if font settings should be ignored when
4811              importing.</desc>
4812              <label>Ignore font settings</label>
4813            </info>
4814            <value>false</value>
4815          </prop>
4816          <group oor:name="FontSize">
4817            <info>
4818              <desc>Specifies font size for HTML.</desc>
4819            </info>
4820            <prop oor:name="Size_1" oor:type="xs:int" oor:nillable="false">
4821              <!-- UIHints: Tools  Options - Browser  HTML [Section] Font
4822                   sizes -->
4823              <info>
4824                <desc>Specifies font size for HTML as Token Font 1.</desc>
4825                <label>Size 1</label>
4826              </info>
4827              <value>7</value>
4828            </prop>
4829            <prop oor:name="Size_2" oor:type="xs:int" oor:nillable="false">
4830              <!-- UIHints: Tools  Options - Browser  HTML [Section] Font
4831                   sizes -->
4832              <info>
4833                <desc>Specifies font size for HTML as Token Font 2.</desc>
4834                <label>Size 2</label>
4835              </info>
4836              <value>10</value>
4837            </prop>
4838            <prop oor:name="Size_3" oor:type="xs:int" oor:nillable="false">
4839              <!-- UIHints: Tools  Options - Browser  HTML [Section] Font
4840                   sizes -->
4841              <info>
4842                <desc>Specifies font size for HTML as Token Font 3.</desc>
4843                <label>Size 3</label>
4844              </info>
4845              <value>12</value>
4846            </prop>
4847            <prop oor:name="Size_4" oor:type="xs:int" oor:nillable="false">
4848              <!-- UIHints: Tools  Options - Browser  HTML [Section] Font
4849                   sizes -->
4850              <info>
4851                <desc>Specifies font size for HTML as Token Font 4.</desc>
4852                <label>Size 4</label>
4853              </info>
4854              <value>14</value>
4855            </prop>
4856            <prop oor:name="Size_5" oor:type="xs:int" oor:nillable="false">
4857              <!-- UIHints: Tools  Options - Browser  HTML [Section] Font
4858                   sizes -->
4859              <info>
4860                <desc>Specifies font size for HTML as Token Font 5.</desc>
4861                <label>Size 5</label>
4862              </info>
4863              <value>18</value>
4864            </prop>
4865            <prop oor:name="Size_6" oor:type="xs:int" oor:nillable="false">
4866              <!-- UIHints: Tools  Options - Browser  HTML [Section] Font
4867                   sizes -->
4868              <info>
4869                <desc>Specifies font size for HTML as Token Font 6.</desc>
4870                <label>Size 6</label>
4871              </info>
4872              <value>24</value>
4873            </prop>
4874            <prop oor:name="Size_7" oor:type="xs:int" oor:nillable="false">
4875              <!-- UIHints: Tools  Options - Browser  HTML [Section] Font
4876                   sizes -->
4877              <info>
4878                <desc>Specifies font size for HTML as Token Font 7.</desc>
4879                <label>Size 7</label>
4880              </info>
4881              <value>36</value>
4882            </prop>
4883          </group>
4884        </group>
4885        <group oor:name="Export">
4886          <info>
4887            <desc>Contains settings for HTML export.</desc>
4888          </info>
4889          <prop oor:name="Browser" oor:type="xs:int" oor:nillable="false">
4890            <!-- UIHints: Tools  Options - Browser  HTML [Section] Export -->
4891            <info>
4892              <desc>Specifies the browser for which the HTML export should be
4893              optimized</desc>
4894              <label>Browser</label>
4895            </info>
4896            <constraints>
4897              <enumeration oor:value="0">
4898                <info>
4899                  <desc>Html 3.2</desc>
4900                </info>
4901              </enumeration>
4902              <enumeration oor:value="1">
4903                <info>
4904                  <desc>MSIE 4.0</desc>
4905                </info>
4906              </enumeration>
4907              <enumeration oor:value="2">
4908                <info>
4909                  <desc>Netscape 3.0</desc>
4910                </info>
4911              </enumeration>
4912              <enumeration oor:value="3">
4913                <info>
4914                  <desc>Writer</desc>
4915                </info>
4916              </enumeration>
4917              <enumeration oor:value="4">
4918                <info>
4919                  <desc>Netscape 4.0</desc>
4920                </info>
4921              </enumeration>
4922            </constraints>
4923            <value>4</value>
4924          </prop>
4925          <prop oor:name="Basic" oor:type="xs:boolean" oor:nillable="false">
4926            <!-- UIHints: Tools  Options - Browser  HTML [Section] Export -->
4927            <info>
4928              <desc>Specifies if Office Basic instructions are considered when
4929              exporting in HTML format.</desc>
4930              <label>(Productname) Basic</label>
4931            </info>
4932            <value>false</value>
4933          </prop>
4934          <prop oor:name="PrintLayout" oor:type="xs:boolean" oor:nillable="false">
4935            <!-- UIHints: Tools  Options - Browser  HTML [Section] Export -->
4936            <info>
4937              <desc>Specifies if the print layout of the current document should
4938              also be exported.</desc>
4939              <label>Print layout</label>
4940            </info>
4941            <value>false</value>
4942          </prop>
4943          <prop oor:name="LocalGraphic" oor:type="xs:boolean" oor:nillable="false">
4944            <!-- UIHints: Tools  Options - Browser  HTML [Section] Export -->
4945            <info>
4946              <desc>Specifies whether images are copied to the Internet server when
4947              uploading via FTP.</desc>
4948              <label>Copy local images to Internet</label>
4949            </info>
4950            <value>true</value>
4951          </prop>
4952          <prop oor:name="Warning" oor:type="xs:boolean" oor:nillable="false">
4953            <!-- UIHints: Tools  Options - Browser  HTML [Section] Export -->
4954            <info>
4955              <desc>Specifies if a warning should be displayed to point out that
4956              the available Basic macros will be lost when exporting in HTML
4957              format.</desc>
4958              <label>Display warning</label>
4959            </info>
4960            <value>true</value>
4961          </prop>
4962          <prop oor:name="Encoding" oor:type="xs:int">
4963            <!-- UIHints: Tools  Options - Browser  HTML [Section] Export -->
4964            <info>
4965              <desc>Specifies the mimetype for the text encoding.</desc>
4966              <label>Encoding export</label>
4967            </info>
4968          </prop>
4969        </group>
4970      </group>
4971      <group oor:name="PDF">
4972        <info>
4973          <desc>Specifies default settings of PDF export dialog.</desc>
4974        </info>
4975        <group oor:name="Export">
4976          <!-- UIHints: File Export as PDF -->
4977          <info>
4978            <desc>Specifies default settings of PDF export dialog.</desc>
4979          </info>
4980          <prop oor:name="CompressMode" oor:type="xs:int" oor:nillable="false">
4981            <info>
4982              <deprecated>Use following properties instead:
4983              UseLosslessCompression, Quality, UseResolutionReduction,
4984              ResolutionReduction</deprecated>
4985              <desc>Deprecated.</desc>
4986            </info>
4987            <value>1</value>
4988          </prop>
4989          <prop oor:name="UseLosslessCompression" oor:type="xs:boolean" oor:nillable="false">
4990            <info>
4991              <desc>Specifies if graphics are exported to PDF using a lossless
4992              compression eg. PNG or if they are compressed using the JPEG
4993              format.</desc>
4994            </info>
4995            <value>false</value>
4996          </prop>
4997          <prop oor:name="Quality" oor:type="xs:int" oor:nillable="false">
4998            <info>
4999              <desc>Specifies quality of the JPG export. A higher value results
5000              in higher quality and file size.</desc>
5001            </info>
5002            <constraints>
5003              <minInclusive oor:value="1">
5004                <info>
5005                  <desc>Represents lowest value that can be used. The lower the
5006                  value, the less good is the compression quality and the bigger
5007                  is be the file size.</desc>
5008                </info>
5009              </minInclusive>
5010              <maxInclusive oor:value="100">
5011                <info>
5012                  <desc>Represents highest value that can be used. The higher
5013                  the value, the better is the compression quality and the
5014                  smaller is the file size.</desc>
5015                </info>
5016              </maxInclusive>
5017            </constraints>
5018            <value>90</value>
5019          </prop>
5020          <prop oor:name="ReduceImageResolution" oor:type="xs:boolean" oor:nillable="false">
5021            <info>
5022              <desc>Specifies if the resolution of each image is reduced to the
5023              resolution specified by the property MaxImageResolution.</desc>
5024            </info>
5025            <value>true</value>
5026          </prop>
5027          <prop oor:name="MaxImageResolution" oor:type="xs:int" oor:nillable="false">
5028            <info>
5029              <desc>If the property ReduceImageResolution is set to true all
5030              images will be reduced to the given value in DPI.</desc>
5031            </info>
5032            <constraints>
5033              <enumeration oor:value="75">
5034                <info>
5035                  <desc>75</desc>
5036                </info>
5037              </enumeration>
5038              <enumeration oor:value="150">
5039                <info>
5040                  <desc>150</desc>
5041                </info>
5042              </enumeration>
5043              <enumeration oor:value="300">
5044                <info>
5045                  <desc>300</desc>
5046                </info>
5047              </enumeration>
5048              <enumeration oor:value="600">
5049                <info>
5050                  <desc>600</desc>
5051                </info>
5052              </enumeration>
5053              <enumeration oor:value="1200">
5054                <info>
5055                  <desc>1200</desc>
5056                </info>
5057              </enumeration>
5058            </constraints>
5059            <value>300</value>
5060          </prop>
5061          <prop oor:name="UseTaggedPDF" oor:type="xs:boolean" oor:nillable="false">
5062            <info>
5063              <desc>Determines if PDF are created by using special tags also
5064              known as Tagged PDF.</desc>
5065            </info>
5066            <value>false</value>
5067          </prop>
5068          <prop oor:name="ExportNotes" oor:type="xs:boolean" oor:nillable="false">
5069            <info>
5070              <desc>Specifies if notes are exported to PDF.</desc>
5071            </info>
5072            <value>false</value>
5073          </prop>
5074          <prop oor:name="ExportNotesInMargin" oor:type="xs:boolean" oor:nillable="false">
5075            <info>
5076              <desc>Specifies if notes are exported in the document margin.</desc>
5077            </info>
5078            <value>false</value>
5079          </prop>
5080          <prop oor:name="ViewPDFAfterExport" oor:type="xs:boolean" oor:nillable="false">
5081            <info>
5082              <desc>Specifies if PDF automatically opens after export.</desc>
5083            </info>
5084            <value>false</value>
5085          </prop>
5086          <prop oor:name="ExportBookmarks" oor:type="xs:boolean" oor:nillable="false">
5087            <info>
5088              <desc>Specifies if bookmarks are exported to PDF.</desc>
5089            </info>
5090            <value>true</value>
5091          </prop>
5092          <prop oor:name="ExportPlaceholders" oor:type="xs:boolean" oor:nillable="false">
5093            <info>
5094              <desc>Specifies if placeholder fields are exported to PDF.</desc>
5095            </info>
5096            <value>false</value>
5097          </prop>
5098          <prop oor:name="OpenBookmarkLevels" oor:type="xs:int" oor:nillable="false">
5099            <info>
5100              <desc>Specifies how many bookmark levels should be opened in the
5101              reader application when the PDF gets opened.</desc>
5102            </info>
5103            <value>-1</value>
5104          </prop>
5105          <prop oor:name="ExportNotesPages" oor:type="xs:boolean" oor:nillable="false">
5106            <info>
5107              <desc>Specifies if notes pages are exported to PDF. (Notes pages
5108              are available in Impress documents only).</desc>
5109            </info>
5110            <value>false</value>
5111          </prop>
5112          <prop oor:name="ExportOnlyNotesPages" oor:type="xs:boolean" oor:nillable="false">
5113            <info>
5114              <desc>Specifies if only notes pages (i.e., not slides) are exported to PDF. (Notes pages
5115              are available in Impress documents only).</desc>
5116            </info>
5117            <value>false</value>
5118          </prop>
5119          <prop oor:name="UseTransitionEffects" oor:type="xs:boolean" oor:nillable="false">
5120            <info>
5121              <desc>Specifies slide transitions are exported to PDF. This option
5122              is active only if storing Impress documents.</desc>
5123            </info>
5124            <value>true</value>
5125          </prop>
5126          <prop oor:name="ExportHiddenSlides" oor:type="xs:boolean" oor:nillable="false">
5127            <info>
5128              <desc>Specifies if hidden slides are exported to PDF. (Hidden slides
5129              are available in Impress documents only).</desc>
5130            </info>
5131            <value>false</value>
5132          </prop>
5133          <prop oor:name="SinglePageSheets" oor:type="xs:boolean" oor:nillable="false">
5134            <info>
5135              <desc>Specifies if each sheet is exported to PDF as a single page.
5136              (Available in Calc documents only).</desc>
5137            </info>
5138            <value>false</value>
5139          </prop>
5140          <prop oor:name="ExportFormFields" oor:type="xs:boolean" oor:nillable="false">
5141            <info>
5142              <desc>Specifies whether form fields are exported as widgets or
5143              only their fixed print representation is exported.</desc>
5144            </info>
5145            <value>true</value>
5146          </prop>
5147          <prop oor:name="FormsType" oor:type="xs:int" oor:nillable="false">
5148            <info>
5149              <desc>Specifies the submitted format of a PDF form.</desc>
5150            </info>
5151            <constraints>
5152              <enumeration oor:value="0">
5153                <info>
5154                  <desc>Specifies that forms type FDF is used.</desc>
5155                </info>
5156              </enumeration>
5157              <enumeration oor:value="1">
5158                <info>
5159                  <desc>Specifies that forms type PDF is used.</desc>
5160                </info>
5161              </enumeration>
5162              <enumeration oor:value="2">
5163                <info>
5164                  <desc>Specifies that forms type HTML is used.</desc>
5165                </info>
5166              </enumeration>
5167              <enumeration oor:value="3">
5168                <info>
5169                  <desc>Specifies that forms type XML is used.</desc>
5170                </info>
5171              </enumeration>
5172            </constraints>
5173            <value>0</value>
5174          </prop>
5175          <prop oor:name="AllowDuplicateFieldNames" oor:type="xs:boolean" oor:nillable="false">
5176            <info>
5177              <desc>Specifies whether multiple form fields exported are allowed
5178              to have the same field name.</desc>
5179            </info>
5180            <value>false</value>
5181          </prop>
5182          <prop oor:name="IsSkipEmptyPages" oor:type="xs:boolean" oor:nillable="false">
5183            <info>
5184              <desc>Specifies that automatically inserted empty pages are
5185              suppressed. This option is active only if storing Writer
5186              documents.</desc>
5187            </info>
5188            <value>true</value>
5189          </prop>
5190          <prop oor:name="IsAddStream" oor:type="xs:boolean" oor:nillable="false">
5191            <info>
5192              <desc>Specifies that a stream is inserted to the PDF file which
5193              contains the original document for archiving purposes.</desc>
5194            </info>
5195            <value>false</value>
5196          </prop>
5197          <prop oor:name="HideViewerMenubar" oor:type="xs:boolean" oor:nillable="false">
5198            <info>
5199              <desc>Specifies whether to hide the PDF viewer menubar when the
5200              document is active.</desc>
5201            </info>
5202            <value>false</value>
5203          </prop>
5204          <prop oor:name="HideViewerToolbar" oor:type="xs:boolean" oor:nillable="false">
5205            <info>
5206              <desc>Specifies whether to hide the PDF viewer toolbar when the
5207              document is active.</desc>
5208            </info>
5209            <value>false</value>
5210          </prop>
5211          <prop oor:name="HideViewerWindowControls" oor:type="xs:boolean" oor:nillable="false">
5212            <info>
5213              <desc>Specifies whether to hide the PDF viewer controls when the
5214              document is active.</desc>
5215            </info>
5216            <value>false</value>
5217          </prop>
5218          <prop oor:name="ResizeWindowToInitialPage" oor:type="xs:boolean" oor:nillable="false">
5219            <info>
5220              <desc>Specifies that the PDF viewer window is opened full screen
5221              when the document is opened.</desc>
5222            </info>
5223            <value>false</value>
5224          </prop>
5225          <prop oor:name="CenterWindow" oor:type="xs:boolean" oor:nillable="false">
5226            <info>
5227              <desc>Specifies that the PDF viewer window is centered to the
5228              screen when the PDF document is opened.</desc>
5229            </info>
5230            <value>false</value>
5231          </prop>
5232          <prop oor:name="OpenInFullScreenMode" oor:type="xs:boolean" oor:nillable="false">
5233            <info>
5234              <desc>Specifies that the PDF viewer window is opened full screen,
5235              on top of all windows..</desc>
5236            </info>
5237            <value>false</value>
5238          </prop>
5239          <prop oor:name="DisplayPDFDocumentTitle" oor:type="xs:boolean" oor:nillable="false">
5240            <info>
5241              <desc>Specifies that the title of the document, if present in the
5242              document properties, is displayed in the PDF viewer window title
5243              bar.</desc>
5244            </info>
5245            <value>true</value>
5246          </prop>
5247          <prop oor:name="InitialView" oor:type="xs:int" oor:nillable="false">
5248            <info>
5249              <desc>Specifies how the PDF document should be displayed when
5250              opened.</desc>
5251            </info>
5252            <constraints>
5253              <enumeration oor:value="0">
5254                <info>
5255                  <desc>Select the default viewer mode, neither outlines or
5256                  thumbnails.</desc>
5257                </info>
5258              </enumeration>
5259              <enumeration oor:value="1">
5260                <info>
5261                  <desc>The document is opened with outline pane opened</desc>
5262                </info>
5263              </enumeration>
5264              <enumeration oor:value="2">
5265                <info>
5266                  <desc>The document is opened with thumbnail pane opened</desc>
5267                </info>
5268              </enumeration>
5269            </constraints>
5270            <value>0</value>
5271          </prop>
5272          <prop oor:name="Magnification" oor:type="xs:int" oor:nillable="false">
5273            <info>
5274              <desc>Specifies the action to be performed when the PDF document
5275              is opened.</desc>
5276            </info>
5277            <constraints>
5278              <enumeration oor:value="0">
5279                <info>
5280                  <desc>Opens with default zoom magnification.</desc>
5281                </info>
5282              </enumeration>
5283              <enumeration oor:value="1">
5284                <info>
5285                  <desc>Opens magnified to fit the entire page within the
5286                  window.</desc>
5287                </info>
5288              </enumeration>
5289              <enumeration oor:value="2">
5290                <info>
5291                  <desc>Opens magnified to fit the entire page width within the
5292                  window.</desc>
5293                </info>
5294              </enumeration>
5295              <enumeration oor:value="3">
5296                <info>
5297                  <desc>Opens magnified to fit the entire width of its bounding
5298                  box within the window (cuts out margins).</desc>
5299                </info>
5300              </enumeration>
5301              <enumeration oor:value="4">
5302                <info>
5303                  <desc>Opens with the zoom level specified in the Zoom
5304                  property.</desc>
5305                </info>
5306              </enumeration>
5307            </constraints>
5308            <value>0</value>
5309          </prop>
5310          <prop oor:name="Zoom" oor:type="xs:int" oor:nillable="false">
5311            <info>
5312              <desc>specifies the zoom level a PDF document is opened with. Only
5313              valid if "Magnification" is set to "4".</desc>
5314            </info>
5315            <value>100</value>
5316          </prop>
5317          <prop oor:name="InitialPage" oor:type="xs:int" oor:nillable="false">
5318            <info>
5319              <desc>Specifies the page on which a PDF document should be opened
5320              in the viewer application.</desc>
5321            </info>
5322            <value>1</value>
5323          </prop>
5324          <prop oor:name="PageLayout" oor:type="xs:int" oor:nillable="false">
5325            <info>
5326              <desc>Specifies the page layout to be used when the document is
5327              opened.</desc>
5328            </info>
5329            <constraints>
5330              <enumeration oor:value="0">
5331                <info>
5332                  <desc>Display the pages according to the reader
5333                  configuration.</desc>
5334                </info>
5335              </enumeration>
5336              <enumeration oor:value="1">
5337                <info>
5338                  <desc>Display one page at a time.</desc>
5339                </info>
5340              </enumeration>
5341              <enumeration oor:value="2">
5342                <info>
5343                  <desc>Display the pages in one column.</desc>
5344                </info>
5345              </enumeration>
5346              <enumeration oor:value="3">
5347                <info>
5348                  <desc>Display the pages in two columns odd pages on the right,
5349                  to have the odd pages on the left the FirstPageOnLeft property
5350                  should be used as well.</desc>
5351                </info>
5352              </enumeration>
5353            </constraints>
5354            <value>0</value>
5355          </prop>
5356          <prop oor:name="FirstPageOnLeft" oor:type="xs:boolean" oor:nillable="false">
5357            <info>
5358              <desc>Used with the value 3 of the PageLayout property above, true
5359              if the first page (odd) should be on the left side of the
5360              screen.</desc>
5361            </info>
5362            <value>false</value>
5363          </prop>
5364          <!-- PDF Encryption -->
5365          <prop oor:name="Printing" oor:type="xs:int" oor:nillable="false">
5366            <info>
5367              <desc>Specifies what printing is allowed.</desc>
5368            </info>
5369            <constraints>
5370              <enumeration oor:value="0">
5371                <info>
5372                  <desc>The document cannot be printed.</desc>
5373                </info>
5374              </enumeration>
5375              <enumeration oor:value="1">
5376                <info>
5377                  <desc>The document can be printed at low resolution
5378                  only.</desc>
5379                </info>
5380              </enumeration>
5381              <enumeration oor:value="2">
5382                <info>
5383                  <desc>The document can be printed at maximum
5384                  resolution.</desc>
5385                </info>
5386              </enumeration>
5387            </constraints>
5388            <value>2</value>
5389          </prop>
5390          <prop oor:name="Changes" oor:type="xs:int" oor:nillable="false">
5391            <info>
5392              <desc>Specifies the change allowed to the document.</desc>
5393            </info>
5394            <constraints>
5395              <enumeration oor:value="0">
5396                <info>
5397                  <desc>The document cannot be changed.</desc>
5398                </info>
5399              </enumeration>
5400              <enumeration oor:value="1">
5401                <info>
5402                  <desc>Inserting deleting and rotating pages is allowed.</desc>
5403                </info>
5404              </enumeration>
5405              <enumeration oor:value="2">
5406                <info>
5407                  <desc>Filling of form field is allowed.</desc>
5408                </info>
5409              </enumeration>
5410              <enumeration oor:value="3">
5411                <info>
5412                  <desc>Both filling of form field and commenting is
5413                  allowed.</desc>
5414                </info>
5415              </enumeration>
5416              <enumeration oor:value="4">
5417                <info>
5418                  <desc>All the changes of the previous selections are
5419                  permitted, with the only exclusion of page extraction
5420                  (copy).</desc>
5421                </info>
5422              </enumeration>
5423            </constraints>
5424            <value>4</value>
5425          </prop>
5426          <prop oor:name="EnableCopyingOfContent" oor:type="xs:boolean" oor:nillable="false">
5427            <info>
5428              <desc>Specifies that the pages and the document content can be
5429              extracted to be used in other documents (copy and paste).</desc>
5430            </info>
5431            <value>true</value>
5432          </prop>
5433          <prop oor:name="EnableTextAccessForAccessibilityTools" oor:type="xs:boolean" oor:nillable="false">
5434            <info>
5435              <desc>Specifies that the document content can be extracted to be
5436              used in accessibility applications.</desc>
5437            </info>
5438            <value>true</value>
5439          </prop>
5440          <!-- END PDF Encryption -->
5441          <!-- PDF Version selection -->
5442          <prop oor:name="SelectPdfVersion" oor:type="xs:int" oor:nillable="false">
5443            <info>
5444              <desc>Specifies the version of PDF to emit.</desc>
5445            </info>
5446            <constraints>
5447              <enumeration oor:value="0">
5448                <info>
5449                  <desc>PDF 1.6 (default selection).</desc>
5450                </info>
5451              </enumeration>
5452              <enumeration oor:value="15">
5453                <info>
5454                  <desc>PDF 1.5</desc>
5455                </info>
5456              </enumeration>
5457              <enumeration oor:value="16">
5458                <info>
5459                  <desc>PDF 1.6</desc>
5460                </info>
5461              </enumeration>
5462              <enumeration oor:value="1">
5463                <info>
5464                  <desc>PDF/A-1 (ISO 19005-1:2005)</desc>
5465                </info>
5466              </enumeration>
5467              <enumeration oor:value="2">
5468                <info>
5469                  <desc>PDF/A-2 (ISO 19005-2:2011)</desc>
5470                </info>
5471              </enumeration>
5472            </constraints>
5473            <value>0</value>
5474          </prop>
5475          <!-- END PDF Version selection -->
5476          <!-- PDF/UA Compliance -->
5477          <prop oor:name="PDFUACompliance" oor:type="xs:boolean" oor:nillable="false">
5478            <info>
5479              <desc>Specifies if the document is PDF/UA (Universal Accessibility) compliant</desc>
5480            </info>
5481            <value>false</value>
5482          </prop>
5483          <!-- END PDF/UA Compliance -->
5484          <!-- PDF Relative Link -->
5485          <prop oor:name="ExportLinksRelativeFsys" oor:type="xs:boolean" oor:nillable="false">
5486            <info>
5487              <desc>Specifies that the file system related hyperlinks (file://
5488              protocol) present in the document will be exported as relative to
5489              the source document location.</desc>
5490            </info>
5491            <value>true</value>
5492          </prop>
5493          <prop oor:name="PDFViewSelection" oor:type="xs:int" oor:nillable="false">
5494            <info>
5495              <desc>Specifies the way the exported PDF will be viewed
5496              (experienced) by the user.</desc>
5497            </info>
5498            <constraints>
5499              <enumeration oor:value="0">
5500                <info>
5501                  <desc>Specifies that the PDF will be exported with all the
5502                  links external to the document treated as URI. This is the
5503                  Default</desc>
5504                </info>
5505              </enumeration>
5506              <enumeration oor:value="1">
5507                <info>
5508                  <desc>Specifies that the PDF will be exported in order to be
5509                  viewed through a PDF reader application only. Valid only if
5510                  not exporting to PDF/A-1 (e.g. SelectPdfVersion not set to
5511                  1).</desc>
5512                </info>
5513              </enumeration>
5514              <enumeration oor:value="2">
5515                <info>
5516                  <desc>Specifies that the PDF will be exported in order to be
5517                  viewed through an Internet browser, using the PDF plug-in
5518                  provided with it. The bookmark of the URI will be rendered
5519                  compatible with the target bookmark generated with OOo PDF
5520                  Export feature (see ExportBookmarksToPDFDestination,
5521                  below).</desc>
5522                </info>
5523              </enumeration>
5524            </constraints>
5525            <value>0</value>
5526          </prop>
5527          <prop oor:name="ConvertOOoTargetToPDFTarget" oor:type="xs:boolean" oor:nillable="false">
5528            <info>
5529              <desc>Specifies that the target documents with .od[tpgs]
5530              extension, will have that extension changed to .pdf when the link
5531              is exported to PDF. The source document remains untouched.</desc>
5532            </info>
5533            <value>false</value>
5534          </prop>
5535          <prop oor:name="ExportBookmarksToPDFDestination" oor:type="xs:boolean" oor:nillable="false">
5536            <info>
5537              <desc>Specifies that the bookmarks contained in the source
5538              OpenOffice.org file should be exported to the PDF file as Named
5539              Destination (see PDF 1.4 section 8.2.1).</desc>
5540            </info>
5541            <value>false</value>
5542          </prop>
5543          <!-- END PDF Relative Link -->
5544        </group>
5545      </group>
5546    </group>
5547    <group oor:name="Misc">
5548      <info>
5549        <desc>Determines the miscellaneous entries for the common group.</desc>
5550      </info>
5551      <prop oor:name="Appearance" oor:type="xs:short" oor:nillable="false">
5552        <!-- UIHints: Tools  Options - General  View  [Section] Appearance -->
5553        <info>
5554          <desc>Specifies the appearance of the user interface.</desc>
5555          <label>Appearance</label>
5556        </info>
5557        <constraints>
5558          <enumeration oor:value="0">
5559            <info>
5560              <desc>Automatic, from system settings</desc>
5561            </info>
5562          </enumeration>
5563          <enumeration oor:value="1">
5564            <info>
5565              <desc>Light</desc>
5566            </info>
5567          </enumeration>
5568          <enumeration oor:value="2">
5569            <info>
5570              <desc>Dark</desc>
5571            </info>
5572          </enumeration>
5573        </constraints>
5574        <value>0</value>
5575      </prop>
5576      <prop oor:name="MaxOpenDocuments" oor:type="xs:int">
5577        <info>
5578          <desc>Determines the maximum count of documents, which are allowed to
5579          be open at the same time. NIL will be interpreted as infinite!</desc>
5580        </info>
5581      </prop>
5582      <prop oor:name="EmojiFont" oor:type="xs:string" oor:nillable="false">
5583        <!-- UIHints: Emoji Control -->
5584        <info>
5585          <desc>Special font for rendering of emojis</desc>
5586        </info>
5587        <value>Segoe UI Emoji,Apple Color Emoji,Noto Color Emoji</value>
5588      </prop>
5589      <prop oor:name="FontsUseWinMetrics" oor:type="oor:string-list" oor:nillable="false">
5590        <info>
5591          <desc>
5592            Fonts where the win metrics need to be considered in order to display the font correctly
5593            Fonts are identified by their name and the font metrics (see fontmetric.cxx:ShouldUseWinMetrics).
5594          </desc>
5595        </info>
5596        <value>
5597          <!-- tdf#148122 Celtic MD font appears wrong -->
5598          <it>Celticmd,1571,-567,1571,-547,2126,559</it>
5599          <!-- DIN Light (ttf version) has odd metrics. The otf version works fine. -->
5600          <it>DIN Light,1509,-503,1509,-483,1997,483</it>
5601        </value>
5602      </prop>
5603      <prop oor:name="FontsDontUseUnderlineMetrics" oor:type="oor:string-list" oor:nillable="false">
5604        <info>
5605          <desc>
5606            Fonts where the underline or strikeout metrics need to be ignored in order to draw the underline or strikeout correctly.
5607            Fonts are identified by their name and the underline metrics (see fontmetric.cxx:ShouldNotUseUnderlineMetrics).
5608          </desc>
5609        </info>
5610        <value>
5611          <!-- tdf#152267 -->
5612          <it>Liberation Serif,100,-123,100,420</it>
5613        </value>
5614      </prop>
5615      <prop oor:name="PluginsEnabled" oor:type="xs:boolean" oor:nillable="false">
5616        <!-- UIHints: Tools  Options  Browser  Other  Plug-Ins  Enable -->
5617        <info>
5618          <desc>Enables/Disables Plugins.</desc>
5619          <label>PluginsEnabled</label>
5620        </info>
5621        <value>true</value>
5622      </prop>
5623      <prop oor:name="UseSystemFileDialog" oor:type="xs:boolean" oor:nillable="false">
5624        <info>
5625          <desc>Determines if the system's file and folder pickers should be
5626          used. If false, the proprietary file/folder picker implementations
5627          will be used. Relevant on platforms where file/folder picker
5628          integration is implemented.</desc>
5629        </info>
5630        <value>true</value>
5631      </prop>
5632      <prop oor:name="UseDocumentSystemFileLocking" oor:type="xs:boolean" oor:nillable="false">
5633        <info>
5634          <desc>Allows to specify whether the OOo document file locking
5635          mechanics should use the system file locking.</desc>
5636        </info>
5637        <value>true</value>
5638      </prop>
5639      <prop oor:name="UseWebDAVFileLocking" oor:type="xs:boolean" oor:nillable="false">
5640        <info>
5641          <desc>Determines if WebDAV-specific file locking is used for documents
5642          on WebDAV shares. It is not recommended to set this option to 'false' in
5643          scenarios where multi-user, concurrent read/write access to WebDAV share
5644          is required</desc>
5645        </info>
5646        <value>true</value>
5647      </prop>
5648      <prop oor:name="UseDocumentOOoLockFile" oor:type="xs:boolean" oor:nillable="false">
5649        <info>
5650          <desc>Allows to specify whether the OOo document file locking
5651          mechanics should use the lock file for locking.</desc>
5652        </info>
5653        <value>true</value>
5654      </prop>
5655      <prop oor:name="UseLocking" oor:type="xs:boolean" oor:nillable="false">
5656        <info>
5657          <desc>Allows to specify whether locking should be used at all.
5658          Use this setting only for debugging purpose.</desc>
5659        </info>
5660        <value>true</value>
5661      </prop>
5662      <prop oor:name="AllowOverrideLocking" oor:type="xs:boolean" oor:nillable="false">
5663        <info>
5664          <desc>Whether the user can open a file for editing although it has been locked by another user.</desc>
5665        </info>
5666        <value>true</value>
5667      </prop>
5668      <prop oor:name="ShowLinkWarningDialog" oor:type="xs:boolean" oor:nillable="false">
5669        <info>
5670          <desc>Determines if a warning dialog should be
5671          displayed when a user checks the link checkbox in
5672          the insert images dialog.</desc>
5673        </info>
5674        <value>true</value>
5675      </prop>
5676      <prop oor:name="UseSystemPrintDialog" oor:type="xs:boolean" oor:nillable="false">
5677        <info>
5678          <desc>Determines if the system's print dialog should be used. If
5679          false, the platform independent print dialog implementation will be
5680          used. Relevant on platforms where print dialog integration is
5681          implemented.</desc>
5682        </info>
5683        <value>false</value>
5684      </prop>
5685      <prop oor:name="DisableUICustomization" oor:type="xs:boolean" oor:nillable="false">
5686        <info>
5687          <desc>Disables the customization of the UI elements.</desc>
5688        </info>
5689        <value>false</value>
5690      </prop>
5691      <prop oor:name="WriteLayerStateAsConfigItem" oor:type="xs:boolean" oor:nillable="false">
5692        <info>
5693          <desc>If 'true', the config items VisibleLayers, PrintableLayers and
5694          LockedLayers are written to 'office:settings' element, otherwise not.
5695          Since LO 6.2 the ODF attributes of 'draw:layer' element are used on
5696          file open, if these config items do not exist.</desc>
5697        </info>
5698        <value>true</value>
5699      </prop>
5700      <prop oor:name="ExperimentalMode" oor:type="xs:boolean" oor:nillable="false">
5701        <info>
5702          <desc>Determines if various experimental, and potentially unstable
5703          features should be enabled in the user interface.</desc>
5704        </info>
5705        <value>false</value>
5706      </prop>
5707      <prop oor:name="ScreenshotMode" oor:type="xs:boolean" oor:nillable="false">
5708        <info>
5709          <desc>Determines whether the interactive screenshot mode should be enabled.</desc>
5710        </info>
5711        <value>false</value>
5712      </prop>
5713      <prop oor:name="CrashReport" oor:type="xs:boolean" oor:nillable="false">
5714        <!-- UIHints: Tools - Options - General -->
5715        <info>
5716          <desc>Enable sending crash reports to The Document Foundation</desc>
5717        </info>
5718        <value>true</value>
5719      </prop>
5720      <prop oor:name="ShowTipOfTheDay" oor:type="xs:boolean" oor:nillable="false">
5721        <!-- UIHints: Tools - Options - General -->
5722        <info>
5723          <desc>Determines whether the Tip-of-the-Day dialog is shown on startup.</desc>
5724        </info>
5725        <value>true</value>
5726      </prop>
5727      <prop oor:name="LastTipOfTheDayShown" oor:type="xs:int" oor:nillable="false">
5728          <info>
5729              <desc>The last time when the Tip-of-the-Day dialog was shown.</desc>
5730          </info>
5731          <value>-1</value> <!-- +1 every 24h -->
5732      </prop>
5733      <prop oor:name="LastTipOfTheDayID" oor:type="xs:int" oor:nillable="false">
5734          <info>
5735              <desc>The last shown Tip-of-the-Day.</desc>
5736          </info>
5737          <value>-1</value>
5738      </prop>
5739      <prop oor:name="PerformFileExtCheck" oor:type="xs:boolean" oor:nillable="false">
5740        <!-- UIHints: Tools - Options - General -->
5741        <info>
5742          <desc>Determines whether the default file extension check is performed on startup.</desc>
5743        </info>
5744        <value>false</value>
5745      </prop>
5746      <prop oor:name="UseOpenCL" oor:type="xs:boolean" oor:nillable="false">
5747        <info>
5748          <desc>Determines whether OpenCL can be used, when available, to speed up
5749          some operations.</desc>
5750        </info>
5751        <value>true</value>
5752      </prop>
5753      <prop oor:name="OpenCLDenyList" oor:type="oor:string-list" oor:nillable="false">
5754        <!-- UIHints: Tools - Options General OpenCL -->
5755        <info>
5756          <desc>Combinations of (OS, OS version, OpenCL platform vendor, OpenCL device name, OpenCL driver version) that are known to be bad. Each entry is a string consisting of five parts separated by slashes. An empty part matches anything. In case a slash, percent or semicolon occurs inside a part, it is replaced by a percent followed by the corresponding number as two hex digits. The parts except OS can contain regular expressions. Inside these regular expressions the usual characters .*()[]\ are special and should be quoted with a backslash to be interpreted literally. OS should be just one of "Linux", "OS X" (including the space) or "Windows" (without quotes). Has higher priority than OpenCLAllowList.</desc>
5757        </info>
5758        <value oor:separator=";">Windows//Intel\(R\) Corporation//9\.17\.10\.2884;Windows//Intel\(R\) Corporation//4\.2\.0\.99;Windows//Intel\(R\) Corporation//5\.2\.0\.10049;Windows//Intel\(R\) Corporation//3\.0\.1\.10891</value>
5759      </prop>
5760      <prop oor:name="OpenCLAllowList" oor:type="oor:string-list" oor:nillable="false">
5761        <!-- UIHints: Tools - Options General OpenCL  -->
5762        <info>
5763          <desc>Like OpenCLDenyList, but for combinations known to be good.</desc>
5764        </info>
5765        <value oor:separator=";">Linux//Advanced Micro Devices, Inc\.//1445\.5 \(sse2,avx\);//Advanced Micro Devices, Inc\.//;//Intel\(R\) Corporation//;//NVIDIA Corporation//</value>
5766      </prop>
5767      <prop oor:name="SelectedOpenCLDeviceIdentifier" oor:type="xs:string" oor:nillable="false">
5768        <info>
5769          <desc>A string identifying the OpenCL device that was successfully selected and passed the OpenCL calculation tests. The syntax of this value is purposely not documented. For LibreOffice internal use only, do not inspect this value or try to modify it from any level of user code.</desc>
5770        </info>
5771        <value>none</value>
5772      </prop>
5773      <prop oor:name="MacroRecorderMode" oor:type="xs:boolean" oor:nillable="false">
5774        <info>
5775          <desc>Determines if the limited, and awkward code producing
5776          macro recorder should be enabled in the user interface.</desc>
5777        </info>
5778        <value>false</value>
5779      </prop>
5780      <prop oor:name="SymbolSet" oor:type="xs:short" oor:nillable="false">
5781        <!-- UIHints: Tools  Options General View -->
5782        <info>
5783          <desc>Specifies which size of the symbols is used for the
5784          toolbars.</desc>
5785        </info>
5786        <constraints>
5787          <enumeration oor:value="0">
5788            <info>
5789              <desc>16x16 pixel icons</desc>
5790            </info>
5791          </enumeration>
5792          <enumeration oor:value="1">
5793            <info>
5794              <desc>26x26 pixel icons</desc>
5795            </info>
5796          </enumeration>
5797          <enumeration oor:value="3">
5798            <info>
5799              <desc>32x32 pixel icons</desc>
5800            </info>
5801          </enumeration>
5802        </constraints>
5803        <value>2</value>
5804      </prop>
5805      <prop oor:name="SidebarIconSize" oor:type="xs:short" oor:nillable="false">
5806        <!-- UIHints: Tools  Options General View -->
5807        <info>
5808          <desc>Specifies which size of the icons is used for the
5809          sidebar.</desc>
5810        </info>
5811        <constraints>
5812          <enumeration oor:value="0">
5813            <info>
5814              <desc>will let the toolbox decide about its size</desc>
5815            </info>
5816          </enumeration>
5817          <enumeration oor:value="1">
5818            <info>
5819              <desc>small icons</desc>
5820            </info>
5821          </enumeration>
5822          <enumeration oor:value="2">
5823            <info>
5824              <desc>large icons</desc>
5825            </info>
5826          </enumeration>
5827        </constraints>
5828        <value>0</value>
5829      </prop>
5830      <prop oor:name="NotebookbarIconSize" oor:type="xs:short" oor:nillable="false">
5831        <!-- UIHints: Tools  Options General View -->
5832        <info>
5833          <desc>Specifies which size of the icons is used for the
5834          notebookbar.</desc>
5835        </info>
5836        <constraints>
5837          <enumeration oor:value="0">
5838            <info>
5839              <desc>will let the toolbox decide about its size</desc>
5840            </info>
5841          </enumeration>
5842          <enumeration oor:value="1">
5843            <info>
5844              <desc>small icons</desc>
5845            </info>
5846          </enumeration>
5847          <enumeration oor:value="2">
5848            <info>
5849              <desc>large icons</desc>
5850            </info>
5851          </enumeration>
5852        </constraints>
5853        <value>0</value>
5854      </prop>
5855      <prop oor:name="SymbolStyle" oor:type="xs:string" oor:nillable="false">
5856        <!-- UIHints: Tools  Options General View -->
5857        <info>
5858          <desc>Specifies which style of the symbols is used for the toolbars,
5859          menus, etc.: "auto" means chosen according to the desktop; "default"
5860          means the LibreOffice default theme; other possible values are the
5861          names of the various icon themes ("breeze", "crystal", "elementary",
5862          etc.).</desc>
5863        </info>
5864        <value>auto</value>
5865      </prop>
5866      <prop oor:name="Persona" oor:type="xs:string" oor:nillable="false">
5867        <!-- UIHints: Tools  Options General Personalization -->
5868        <info>
5869          <desc>Specifies whether we should use a Firefox Persona, ie. a
5870            picture under the menu, toolbar, and status bar.</desc>
5871        </info>
5872        <constraints>
5873          <enumeration oor:value="no">
5874            <info>
5875              <desc>No - the user wants just the themed look, no Persona.</desc>
5876            </info>
5877          </enumeration>
5878          <enumeration oor:value="default">
5879            <info>
5880              <desc>Default - the LibreOffice default Persona.</desc>
5881            </info>
5882          </enumeration>
5883          <enumeration oor:value="own">
5884            <info>
5885              <desc>The user installed an own Persona, and wants to use that.</desc>
5886            </info>
5887          </enumeration>
5888        </constraints>
5889        <value>default</value>
5890      </prop>
5891      <prop oor:name="PersonaSettings" oor:type="xs:string" oor:nillable="false">
5892        <!-- UIHints: Tools  Options General Personalization -->
5893        <info>
5894          <desc>Names of the header and footer images, and colors for text and
5895            accent.  When set, the value has form
5896            "header.jpg;footer.jpg;#RGBTXT;#RGBACC".</desc>
5897        </info>
5898        <value/>
5899      </prop>
5900      <prop oor:name="ToolboxStyle" oor:type="xs:short" oor:nillable="false">
5901        <!-- UIHints: Tools  Options General View -->
5902        <info>
5903          <desc>Specifies which button style the toolbars should use.</desc>
5904        </info>
5905        <constraints>
5906          <enumeration oor:value="0">
5907            <info>
5908              <desc>3D style</desc>
5909            </info>
5910          </enumeration>
5911          <enumeration oor:value="1">
5912            <info>
5913              <desc>Flat style</desc>
5914            </info>
5915          </enumeration>
5916        </constraints>
5917        <value>1</value>
5918      </prop>
5919      <prop oor:name="FormControlPilotsEnabled" oor:type="xs:boolean" oor:nillable="false">
5920        <info>
5921          <desc>Enables/Disables the usage of AutoPilots for form
5922          controls.</desc>
5923        </info>
5924        <value>true</value>
5925      </prop>
5926      <prop oor:name="FirstRun" oor:type="xs:boolean" oor:nillable="false">
5927        <info>
5928          <desc>Specifies if the office has never before been started.</desc>
5929          <label>FirstRun</label>
5930        </info>
5931        <value>true</value>
5932      </prop>
5933      <prop oor:name="PreloadJVM" oor:type="xs:boolean" oor:nillable="false">
5934        <info>
5935          <desc>Specifies if the JVM should be preloaded during LO start up.</desc>
5936          <label>PreloadJVM</label>
5937        </info>
5938        <value>false</value>
5939      </prop>
5940      <prop oor:name="FilePickerPlacesUrls" oor:type="oor:string-list" oor:nillable="false">
5941        <info>
5942          <desc>List of URLs of the places the user bookmarked in the file picker dialog.</desc>
5943        </info>
5944      </prop>
5945      <prop oor:name="FilePickerPlacesNames" oor:type="oor:string-list" oor:nillable="false">
5946        <info>
5947          <desc>List of names of the places the user bookmarked in the file picker dialog.</desc>
5948        </info>
5949      </prop>
5950      <prop oor:name="FilePickerLastService" oor:type="xs:string" oor:nillable="false">
5951        <info>
5952          <desc>URL of the last used service in the remote file picker.</desc>
5953        </info>
5954      </prop>
5955      <set oor:name="FilePickerLastDirectory" oor:node-type="LastDirectory">
5956        <info>
5957          <desc>Contains the last used directory for the filepicker for various contexts</desc>
5958        </info>
5959      </set>
5960      <prop oor:name="CmisServersUrls" oor:type="oor:string-list" oor:nillable="false">
5961        <info>
5962          <desc>List of sample URLs of the CMIS servers in the place edition dialog.</desc>
5963        </info>
5964      </prop>
5965      <prop oor:name="CmisServersNames" oor:type="oor:string-list" oor:nillable="false">
5966        <info>
5967          <desc>List of names of the CMIS servers in the place edition dialog.</desc>
5968        </info>
5969      </prop>
5970      <set oor:name="PersonasList" oor:node-type="PersonasEntry">
5971        <info>
5972          <desc>Contains the Personas installed through extensions</desc>
5973        </info>
5974      </set>
5975      <prop oor:name="FindReplaceRememberedSearches" oor:type="xs:int" oor:nillable="false">
5976        <info>
5977          <desc>Number of saved searches in the Find and Replace dialog.</desc>
5978        </info>
5979      </prop>
5980      <prop oor:name="AllowEditReadonlyDocs" oor:type="xs:boolean" oor:nillable="false">
5981        <info>
5982          <desc>Allow the user to edit read-only docs (via menu or Infobar)</desc>
5983        </info>
5984        <value>true</value>
5985      </prop>
5986    </group>
5987    <group oor:name="Forms">
5988      <info>
5989        <desc>contains settings for the form layer of the applications.</desc>
5990      </info>
5991      <group oor:name="ControlLayout">
5992        <info>
5993          <desc>specifies certain default layout settings for form controls. All
5994          those settings can be overruled in concrete documents, they specify
5995          creation-time defaults only.</desc>
5996        </info>
5997        <node-ref oor:name="com.sun.star.text.TextDocument" oor:node-type="ApplicationControlLayout">
5998          <info>
5999            <desc>specifies certain default layout settings for form controls in
6000            text documents</desc>
6001          </info>
6002        </node-ref>
6003        <node-ref oor:name="com.sun.star.text.WebDocument" oor:node-type="ApplicationControlLayout">
6004          <info>
6005            <desc>specifies certain default layout settings for form controls in
6006            web pages</desc>
6007          </info>
6008        </node-ref>
6009        <node-ref oor:name="com.sun.star.sheet.SpreadsheetDocument" oor:node-type="ApplicationControlLayout">
6010          <info>
6011            <desc>specifies certain default layout settings for form controls in
6012            spreadsheet documents</desc>
6013          </info>
6014        </node-ref>
6015        <node-ref oor:name="com.sun.star.drawing.DrawingDocument" oor:node-type="ApplicationControlLayout">
6016          <info>
6017            <desc>specifies certain default layout settings for form controls in
6018            drawing documents</desc>
6019          </info>
6020        </node-ref>
6021        <node-ref oor:name="com.sun.star.presentation.PresentationDocument" oor:node-type="ApplicationControlLayout">
6022          <info>
6023            <desc>specifies certain default layout settings for form controls in
6024            presentation documents</desc>
6025          </info>
6026        </node-ref>
6027        <node-ref oor:name="com.sun.star.xforms.XMLFormDocument" oor:node-type="ApplicationControlLayout">
6028          <info>
6029            <desc>specifies certain default layout settings for form controls in
6030            XML form documents</desc>
6031          </info>
6032        </node-ref>
6033        <node-ref oor:name="com.sun.star.sdb.FormDesign" oor:node-type="ApplicationControlLayout">
6034          <info>
6035            <desc>specifies certain default layout settings for form controls in
6036            database form documents</desc>
6037          </info>
6038        </node-ref>
6039        <node-ref oor:name="com.sun.star.sdb.TextReportDesign" oor:node-type="ApplicationControlLayout">
6040          <info>
6041            <desc>specifies certain default layout settings for form controls in
6042            database text report documents.</desc>
6043          </info>
6044        </node-ref>
6045      </group>
6046      <group oor:name="PropertyBrowser">
6047        <info>
6048          <desc>specifies settings for the property browser used for forms and
6049          form controls.</desc>
6050        </info>
6051        <prop oor:name="ExperimentalProperties" oor:type="xs:boolean" oor:nillable="false">
6052          <info>
6053            <desc>Enables or disables the property browser's access to
6054            form/control properties which are not officially supported.</desc>
6055          </info>
6056          <value>false</value>
6057        </prop>
6058        <prop oor:name="DirectHelp" oor:type="xs:boolean" oor:nillable="false">
6059          <info>
6060            <desc>Enables or disables a help section at the bottom of the
6061            property browser, which shows the help of the currently active
6062            property.</desc>
6063          </info>
6064          <value>false</value>
6065        </prop>
6066      </group>
6067    </group>
6068    <group oor:name="AsianLayout">
6069      <info>
6070        <desc>Contains layout specific settings for Asian languages.</desc>
6071      </info>
6072      <prop oor:name="IsKerningWesternTextOnly" oor:type="xs:boolean" oor:nillable="false">
6073        <!-- UIHints: Tools  Options  Asian typography  Asian layout Kerning
6074             Western text only -->
6075        <info>
6076          <desc>Determines the kerning of western text and/or punctuation inside
6077          of Asian text.</desc>
6078          <label>IsKerningWesternTextOnly</label>
6079        </info>
6080        <value>true</value>
6081      </prop>
6082      <prop oor:name="CompressCharacterDistance" oor:type="xs:short" oor:nillable="false">
6083        <!-- UIHints: Tools  Options  Asian typography  Asian layout Character
6084             distance  -->
6085        <info>
6086          <desc>Determines the type of character distance compression in Asian
6087          text: 0 - no compression; 1 - compress punctuation only; 2 - compress
6088          interpunction a Japanese kana.</desc>
6089          <label>CompressCharacterDistance</label>
6090        </info>
6091        <value>0</value>
6092      </prop>
6093      <set oor:name="StartEndCharacters" oor:node-type="StartEndCharacters">
6094        <info>
6095          <desc>Contains the characters at which lines are not allowed to begin
6096          or to end. For each locale there is a separate entry with the locale
6097          as its node name.</desc>
6098          <label>StartEndCharacters</label>
6099        </info>
6100      </set>
6101    </group>
6102    <group oor:name="SearchOptions">
6103      <info>
6104        <desc>Contains all options for search.</desc>
6105      </info>
6106      <prop oor:name="IsWholeWordsOnly" oor:type="xs:boolean" oor:nillable="false">
6107        <!-- UIHints: Edit/Find and Replace -->
6108        <info>
6109          <desc>Specifies search for whole words only.</desc>
6110        </info>
6111        <value>false</value>
6112      </prop>
6113      <prop oor:name="IsBackwards" oor:type="xs:boolean" oor:nillable="false">
6114        <!-- UIHints: Edit/Find and Replace -->
6115        <info>
6116          <desc>Specifies search backwards.</desc>
6117        </info>
6118        <value>false</value>
6119      </prop>
6120      <prop oor:name="IsUseWildcard" oor:type="xs:boolean" oor:nillable="false">
6121        <!-- UIHints: Edit/Find and Replace -->
6122        <info>
6123          <desc>Specifies search with the use of wildcards.</desc>
6124        </info>
6125        <value>false</value>
6126      </prop>
6127      <prop oor:name="IsUseRegularExpression" oor:type="xs:boolean" oor:nillable="false">
6128        <!-- UIHints: Edit/Find and Replace -->
6129        <info>
6130          <desc>Specifies search with the use of regular expressions.</desc>
6131        </info>
6132        <value>false</value>
6133      </prop>
6134      <prop oor:name="IsSearchForStyles" oor:type="xs:boolean" oor:nillable="false">
6135        <!-- UIHints: Edit/Find and Replace -->
6136        <info>
6137          <desc>Specifies search for styles only.</desc>
6138        </info>
6139        <value>false</value>
6140      </prop>
6141      <prop oor:name="IsSimilaritySearch" oor:type="xs:boolean" oor:nillable="false">
6142        <!-- UIHints: Edit/Find and Replace -->
6143        <info>
6144          <desc>Specifies search with similarity.</desc>
6145        </info>
6146        <value>false</value>
6147      </prop>
6148      <prop oor:name="IsMatchCase" oor:type="xs:boolean" oor:nillable="false">
6149        <!-- UIHints: Edit/Find and Replace -->
6150        <info>
6151          <desc>Specifies search as case sensitive.</desc>
6152        </info>
6153        <value>false</value>
6154      </prop>
6155      <prop oor:name="IsIgnoreDiacritics_CTL" oor:type="xs:boolean" oor:nillable="false">
6156        <!-- UIHints: Edit/Find and Replace -->
6157        <info>
6158          <desc>Specifies search ignores diacritics, not only CTL though.</desc>
6159        </info>
6160        <value>false</value>
6161      </prop>
6162      <prop oor:name="IsIgnoreKashida_CTL" oor:type="xs:boolean" oor:nillable="false">
6163        <!-- UIHints: Edit/Find and Replace -->
6164        <info>
6165          <desc>Specifies search with the use of CTL option.</desc>
6166        </info>
6167        <value>true</value>
6168      </prop>
6169      <prop oor:name="IsUseAsianOptions" oor:type="xs:boolean" oor:nillable="false">
6170        <!-- UIHints: Edit/Find and Replace -->
6171        <info>
6172          <desc>Specifies search with the use of Asian options.</desc>
6173        </info>
6174        <value>false</value>
6175      </prop>
6176      <prop oor:name="ComponentSearchGroupLabel" oor:type="xs:string" oor:localized="true">
6177        <!-- UIHints: Edit/Find and Replace -->
6178        <info>
6179          <desc>Specifies the divider label in case of a component-based search
6180          extension.</desc>
6181        </info>
6182      </prop>
6183      <prop oor:name="ComponentSearchCommandLabel1" oor:type="xs:string" oor:localized="true">
6184        <!-- UIHints: Edit/Find and Replace -->
6185        <info>
6186          <desc>Specifies the label of the first component-based search
6187          command.</desc>
6188        </info>
6189      </prop>
6190      <prop oor:name="ComponentSearchCommandLabel2" oor:type="xs:string" oor:localized="true">
6191        <!-- UIHints: Edit/Find and Replace -->
6192        <info>
6193          <desc>Specifies the label of the second component-based search
6194          command.</desc>
6195        </info>
6196      </prop>
6197      <prop oor:name="IsNotes" oor:type="xs:boolean" oor:nillable="false">
6198        <!-- UIHints: Edit Search/Replace  -->
6199        <info>
6200          <desc>Specifies if search includes comments(SwPostItFields)</desc>
6201        </info>
6202        <value>false</value>
6203      </prop>
6204      <prop oor:name="IsSearchFormatted" oor:type="xs:boolean" oor:nillable="false">
6205        <!-- UIHints: Edit / Find and Replace  -->
6206        <info>
6207          <desc>Specifies if formatted display strings are searched instead of cell content (Calc).</desc>
6208        </info>
6209        <value>false</value>
6210      </prop>
6211      <group oor:name="Japanese">
6212        <info>
6213          <desc>Contains search options for the Japanese language.</desc>
6214        </info>
6215        <prop oor:name="IsMatchFullHalfWidthForms" oor:type="xs:boolean" oor:nillable="false">
6216          <!-- UIHints: Tools/Options/"Asian typography"-"Japanese Find" -->
6217          <info>
6218            <desc>Does not distinguish between full-width and half-width
6219            characters.</desc>
6220          </info>
6221          <value>true</value>
6222        </prop>
6223        <prop oor:name="IsMatchHiraganaKatakana" oor:type="xs:boolean" oor:nillable="false">
6224          <!-- UIHints: Tools/Options/"Asian typography"-"Japanese Find" -->
6225          <info>
6226            <desc>Does not distinguish between hiragana and katakana
6227            characters.</desc>
6228          </info>
6229          <value>true</value>
6230        </prop>
6231        <prop oor:name="IsMatchContractions" oor:type="xs:boolean" oor:nillable="false">
6232          <!-- UIHints: Tools/Options/"Asian typography"-"Japanese Find" -->
6233          <info>
6234            <desc>Specifies search without distinguishing between characters
6235            with diphthongs and double consonants and plain characters.</desc>
6236          </info>
6237          <value>true</value>
6238        </prop>
6239        <prop oor:name="IsMatchMinusDashCho-on" oor:type="xs:boolean" oor:nillable="false">
6240          <!-- UIHints: Tools/Options/"Asian typography"-"Japanese Find" -->
6241          <info>
6242            <desc>Specifies search without distinguishing between minus signs,
6243            dashes, and long vowel sounds.</desc>
6244          </info>
6245          <value>true</value>
6246        </prop>
6247        <prop oor:name="IsMatchRepeatCharMarks" oor:type="xs:boolean" oor:nillable="false">
6248          <!-- UIHints: Tools/Options/"Asian typography"-"Japanese Find" -->
6249          <info>
6250            <desc>Specifies search without distinguishing between repeat
6251            character marks.</desc>
6252          </info>
6253          <value>true</value>
6254        </prop>
6255        <prop oor:name="IsMatchVariantFormKanji" oor:type="xs:boolean" oor:nillable="false">
6256          <!-- UIHints: Tools/Options/"Asian typography"-"Japanese Find" -->
6257          <info>
6258            <desc>Specifies search without distinguishing between standard and
6259            nonstandard ideography.</desc>
6260          </info>
6261          <value>true</value>
6262        </prop>
6263        <prop oor:name="IsMatchOldKanaForms" oor:type="xs:boolean" oor:nillable="false">
6264          <!-- UIHints: Tools/Options/"Asian typography"-"Japanese Find" -->
6265          <info>
6266            <desc>Specifies search without distinguishing between standard and
6267            nonstandard ideography.</desc>
6268          </info>
6269          <value>true</value>
6270        </prop>
6271        <prop oor:name="IsMatch_DiZi_DuZu" oor:type="xs:boolean" oor:nillable="false">
6272          <!-- UIHints: Tools/Options/"Asian typography"-"Japanese Find" -->
6273          <info>
6274            <desc>Specifies search without distinguishing between 'Di' and 'Zi'
6275            or 'Du' and 'Zu'.</desc>
6276          </info>
6277          <value>true</value>
6278        </prop>
6279        <prop oor:name="IsMatch_BaVa_HaFa" oor:type="xs:boolean" oor:nillable="false">
6280          <!-- UIHints: Tools/Options/"Asian typography"-"Japanese Find" -->
6281          <info>
6282            <desc>Specifies search without distinguishing between 'Ba' and 'Va'
6283            or 'Ha' and 'Fa'.</desc>
6284          </info>
6285          <value>true</value>
6286        </prop>
6287        <prop oor:name="IsMatch_TsiThiChi_DhiZi" oor:type="xs:boolean" oor:nillable="false">
6288          <!-- UIHints: Tools/Options/"Asian typography"-"Japanese Find" -->
6289          <info>
6290            <desc>Specifies search without distinguishing between 'Tsi', 'Thi'
6291            and 'Chi' or 'Dhi' and 'Zi'.</desc>
6292          </info>
6293          <value>true</value>
6294        </prop>
6295        <prop oor:name="IsMatch_HyuIyu_ByuVyu" oor:type="xs:boolean" oor:nillable="false">
6296          <!-- UIHints: Tools/Options/"Asian typography"-"Japanese Find" -->
6297          <info>
6298            <desc>Specifies search without distinguishing between 'Hyu' and
6299            'Fyu' or 'Byu' and 'Vyu'.</desc>
6300          </info>
6301          <value>true</value>
6302        </prop>
6303        <prop oor:name="IsMatch_SeShe_ZeJe" oor:type="xs:boolean" oor:nillable="false">
6304          <!-- UIHints: Tools/Options/"Asian typography"-"Japanese Find" -->
6305          <info>
6306            <desc>Specifies search without distinguishing between 'Se' and 'She'
6307            or 'Ze' and 'Je'.</desc>
6308          </info>
6309          <value>true</value>
6310        </prop>
6311        <prop oor:name="IsMatch_IaIya" oor:type="xs:boolean" oor:nillable="false">
6312          <!-- UIHints: Tools/Options/"Asian typography"-"Japanese Find" -->
6313          <info>
6314            <desc>Specifies search without distinguishing between 'Ia' and
6315            'Iya'.</desc>
6316          </info>
6317          <value>true</value>
6318        </prop>
6319        <prop oor:name="IsMatch_KiKu" oor:type="xs:boolean" oor:nillable="false">
6320          <!-- UIHints: Tools/Options/"Asian typography"-"Japanese Find" -->
6321          <info>
6322            <desc>Specifies search without distinguishing between 'Ki' and
6323            'Ku'.</desc>
6324          </info>
6325          <value>true</value>
6326        </prop>
6327        <prop oor:name="IsIgnorePunctuation" oor:type="xs:boolean" oor:nillable="false">
6328          <!-- UIHints: Tools/Options/"Asian typography"-"Japanese Find" -->
6329          <info>
6330            <desc>Specifies search without distinguishing between punctuation
6331            characters.</desc>
6332          </info>
6333          <value>true</value>
6334        </prop>
6335        <prop oor:name="IsIgnoreWhitespace" oor:type="xs:boolean" oor:nillable="false">
6336          <!-- UIHints: Tools/Options/"Asian typography"-"Japanese Find" -->
6337          <info>
6338            <desc>Specifies search without distinguishing between characters
6339            used as blank spaces, such as full-width spaces, half-width spaces,
6340            and tabs.</desc>
6341          </info>
6342          <value>true</value>
6343        </prop>
6344        <prop oor:name="IsIgnoreProlongedSoundMark" oor:type="xs:boolean" oor:nillable="false">
6345          <!-- UIHints: Tools/Options/"Asian typography"-"Japanese Find" -->
6346          <info>
6347            <desc>Specifies search without distinguishing between prolonged
6348            sound marks.</desc>
6349          </info>
6350          <value>true</value>
6351        </prop>
6352        <prop oor:name="IsIgnoreMiddleDot" oor:type="xs:boolean" oor:nillable="false">
6353          <!-- UIHints: Tools/Options/"Asian typography"-"Japanese Find" -->
6354          <info>
6355            <desc>Specifies search without distinguishing between normal dots
6356            and middle dots.</desc>
6357          </info>
6358          <value>true</value>
6359        </prop>
6360      </group>
6361    </group>
6362    <group oor:name="Accessibility">
6363      <info>
6364        <desc>Specifies settings for the accessibility options.</desc>
6365      </info>
6366      <prop oor:name="HighContrast" oor:type="xs:int" oor:nillable="false">
6367        <!-- UIHints: Tools  Options - Accessibility Options -->
6368        <info>
6369          <desc>Indicates whether High Contrast accessibility mode should be active.</desc>
6370          <label>High Contrast</label>
6371        </info>
6372        <constraints>
6373          <enumeration oor:value="0">
6374            <info>
6375              <desc>Use the default setting for the current platform.</desc>
6376            </info>
6377          </enumeration>
6378          <enumeration oor:value="1">
6379            <info>
6380              <desc>Disable</desc>
6381            </info>
6382          </enumeration>
6383          <enumeration oor:value="2">
6384            <info>
6385              <desc>Enable</desc>
6386            </info>
6387          </enumeration>
6388        </constraints>
6389        <value>0</value>
6390      </prop>
6391      <prop oor:name="IsForPagePreviews" oor:type="xs:boolean" oor:nillable="false">
6392        <info>
6393          <desc>Enables the use of high contrast colors, instead of displaying
6394          the normal/original WYSIWYG colors.</desc>
6395          <label>For page previews</label>
6396        </info>
6397        <value>true</value>
6398      </prop>
6399      <prop oor:name="IsHelpTipsDisappear" oor:type="xs:boolean" oor:nillable="false">
6400        <info>
6401          <desc>Enables or disables the automatic time out of help tips. You can
6402          specify a duration (n) of 1 to 99 seconds. If this option is
6403          disabled, press the Esc key to dismiss the help tip.</desc>
6404          <label>Help tips disappear after</label>
6405        </info>
6406        <value>true</value>
6407      </prop>
6408      <prop oor:name="HelpTipSeconds" oor:type="xs:short" oor:nillable="false">
6409        <info>
6410          <desc>Enables or disables the automatic time out of help tips. You
6411          can specify a duration (n) of 1 to 99 seconds. If this option is
6412          disabled, press the Esc key to dismiss the help tip.</desc>
6413          <label>Help tips disappear after</label>
6414        </info>
6415        <constraints>
6416          <minInclusive oor:value="1">
6417            <info>
6418              <desc>Specifies the number of seconds to wait before displaying a
6419              help tip.</desc>
6420            </info>
6421          </minInclusive>
6422          <maxInclusive oor:value="99">
6423            <info>
6424              <desc>Specifies the number of seconds to display a help
6425              tip.</desc>
6426            </info>
6427          </maxInclusive>
6428        </constraints>
6429        <value>4</value>
6430      </prop>
6431      <prop oor:name="IsAllowAnimatedGraphics" oor:type="xs:boolean" oor:nillable="false">
6432        <info>
6433          <desc>Indicates whether to allow the graphical animation in all SO/OO
6434          applications (i.e. animated GIFs and objects in Impress during
6435          presentation, animated graphical previews (Gallery,
6436          Insert-Image, Animation Tool in Impress.)</desc>
6437          <label>Allow animated images</label>
6438        </info>
6439        <value>true</value>
6440      </prop>
6441      <prop oor:name="IsAllowAnimatedText" oor:type="xs:boolean" oor:nillable="false">
6442        <info>
6443          <desc>Indicates whether to allow all textual animation like blinking
6444          and scrolling in all SO/OO applications.</desc>
6445          <label>Allow animated text</label>
6446        </info>
6447        <value>true</value>
6448      </prop>
6449      <prop oor:name="IsAutomaticFontColor" oor:type="xs:boolean" oor:nillable="false">
6450        <info>
6451          <desc>Overrides all text color attributes set in a SO/OO document for
6452          display only.</desc>
6453          <label>Always use automatic font color for screen display</label>
6454        </info>
6455        <value>false</value>
6456      </prop>
6457      <prop oor:name="IsSelectionInReadonly" oor:type="xs:boolean" oor:nillable="false">
6458        <info>
6459          <desc>Indicates whether the cursor is displayed in read-only
6460          texts.</desc>
6461          <label>Use text selection mode in readonly texts.</label>
6462        </info>
6463        <value>false</value>
6464      </prop>
6465      <prop oor:name="EdgeBlending" oor:type="xs:short">
6466        <info>
6467          <desc>
6468            Option to use EdgeBlending for previews in the UI (for ColorValueSet, ColorDropDown, FillStyle/LineStyle
6469            previews, etc...). EdgeBlending will visualize a one pixel border on the preview object with interpolated
6470            colors (default: TopLeft White, BottomRight Black) so that a nice 3D effect is shown. It is a percent
6471            value describing how strong the effect shall be. The value 0% switches it off, while the value 100% will
6472            cover the preview object's border completely with one pixel. Values in-between will be alpha-blended with
6473            the original preview image.
6474          </desc>
6475          <label>Defines the EdgeBlending for Previews in Percent.</label>
6476        </info>
6477        <value>35</value>
6478      </prop>
6479      <prop oor:name="ListBoxMaximumLineCount" oor:type="xs:short">
6480        <info>
6481          <desc>
6482            This option controls how many lines of a ListBox will be shown as a maximum. If the ListBox has less lines,
6483            all lines will be shown when opening the drop down content. If it has more lines, the visible number of
6484            lines will be limited to this number. The value 0 disables this feature, negative values are not allowed.
6485            This feature may not be used automatically by all ListBox implementations,
6486            but it gives a central hint value to use if an implementation wants to adapt to something useful.
6487          </desc>
6488          <label>Defines the maximum number of lines visible in a ListBox.</label>
6489        </info>
6490        <value>25</value>
6491      </prop>
6492      <prop oor:name="ColorValueSetColumnCount" oor:type="xs:short">
6493        <info>
6494          <desc>
6495            This option controls how many columns the ColorValueSets (the matrix-organized dialogs for color select)
6496            will have. The default is 12 and this is aligned with the layout of the standard color palette. thus, when you
6497            change this value, you should know what you do. This setting also influences some width-oriented layouts in
6498            dialogs where this ColorValueSets are used, e.g. FillStyle dialog.
6499          </desc>
6500          <label>Defines the number of columns that will be shown in a ColorValueSet.</label>
6501        </info>
6502        <value>12</value>
6503      </prop>
6504      <prop oor:name="PreviewUsesCheckeredBackground" oor:type="xs:boolean">
6505        <info>
6506          <desc>
6507            This option allows to make previews (e.g. UI previews for object attributes) show the content with a checkered
6508            background to allow simple identification and better preview of transparent content, e.g. when a draw object
6509            is filled with a transparent image (SVG or bitmap) the preview will show the checkered background shine
6510            through, so the user can identify that the fill has transparency with a single look.
6511          </desc>
6512          <label>Shows previews with shining through checkered background to visualize transparency.</label>
6513         </info>
6514         <value>false</value>
6515       </prop>
6516       <prop oor:name="OnlineAccessibilityCheck" oor:type="xs:boolean" oor:nillable="false">
6517        <info>
6518          <desc>
6519            Enables online accessibility check, which checks for accessibility issues inside the document structure
6520            while the user edits the document.
6521          </desc>
6522          <label>Enable/Disable online accessibility check.</label>
6523         </info>
6524         <value>false</value>
6525       </prop>
6526    </group>
6527    <group oor:name="ExternalApps" oor:extensible="true">
6528      <info>
6529        <deprecated>Without replacement.</deprecated>
6530        <desc>Specifies external helper applications / protocol handlers.</desc>
6531      </info>
6532    </group>
6533    <group oor:name="ExternalMailer">
6534      <info>
6535        <desc>Specifies an external mail application to be used for Send as
6536        email.</desc>
6537      </info>
6538      <prop oor:name="Program" oor:type="xs:string" oor:nillable="false">
6539        <info>
6540          <desc>Specifies the external mail application to be used.</desc>
6541        </info>
6542        <value/>
6543      </prop>
6544    </group>
6545    <group oor:name="I18N">
6546      <info>
6547        <desc>Contains various language/localization specific settings.</desc>
6548      </info>
6549      <group oor:name="InputMethod">
6550        <info>
6551          <desc>Contains settings for (language/localization specific) input
6552          methods.</desc>
6553        </info>
6554        <prop oor:name="ShowStatusWindow" oor:type="xs:boolean">
6555          <info>
6556            <desc>Controls the behavior of the IIIMP status window on Unix. If
6557            true, the status window is always displayed. If false, the status
6558            window is never displayed. If nil (the default), the status window
6559            is displayed depending on the current locale.</desc>
6560          </info>
6561        </prop>
6562      </group>
6563      <group oor:name="CJK">
6564        <info>
6565          <desc>Contains settings for the Asian languages (Chinese, Japanese,
6566          Korean,...) layout.</desc>
6567        </info>
6568        <prop oor:name="CJKFont" oor:type="xs:boolean" oor:nillable="false">
6569          <!-- UIHints: setup -->
6570          <info>
6571            <desc>Specifies, whether CJK font settings are available (true) or
6572            not (false).</desc>
6573          </info>
6574          <value>false</value>
6575        </prop>
6576        <prop oor:name="VerticalText" oor:type="xs:boolean" oor:nillable="false">
6577          <!-- UIHints: setup -->
6578          <info>
6579            <desc>Specifies, whether vertical text is available (true) or not
6580            (false).</desc>
6581          </info>
6582          <value>false</value>
6583        </prop>
6584        <prop oor:name="AsianTypography" oor:type="xs:boolean" oor:nillable="false">
6585          <!-- UIHints: setup -->
6586          <info>
6587            <desc>Specifies, whether Asian typography options like compression
6588            and forbidden characters are available (true) or not (false).</desc>
6589          </info>
6590          <value>false</value>
6591        </prop>
6592        <prop oor:name="JapaneseFind" oor:type="xs:boolean" oor:nillable="false">
6593          <!-- UIHints: setup -->
6594          <info>
6595            <desc>Specifies, whether Japanese find options are selectable for
6596            search and replace (true) or not (false).</desc>
6597          </info>
6598          <value>false</value>
6599        </prop>
6600        <prop oor:name="Ruby" oor:type="xs:boolean" oor:nillable="false">
6601          <!-- UIHints: setup -->
6602          <info>
6603            <desc>Specifies whether Rubys are available (true) or not
6604            (false).</desc>
6605          </info>
6606          <value>false</value>
6607        </prop>
6608        <prop oor:name="ChangeCaseMap" oor:type="xs:boolean" oor:nillable="false">
6609          <!-- UIHints: setup -->
6610          <info>
6611            <desc>Specifies whether case mapping to half and full width,
6612            hiragana and katakana are available (true) or not (false).</desc>
6613          </info>
6614          <value>false</value>
6615        </prop>
6616        <prop oor:name="DoubleLines" oor:type="xs:boolean" oor:nillable="false">
6617          <!-- UIHints: setup -->
6618          <info>
6619            <desc>Specifies whether writing in double lines is available (true)
6620            or not (false).</desc>
6621          </info>
6622          <value>false</value>
6623        </prop>
6624        <prop oor:name="EmphasisMarks" oor:type="xs:boolean" oor:nillable="false">
6625          <!-- UIHints: setup -->
6626          <info>
6627            <desc>Specifies whether emphasis marks are available (true) or not
6628            (false).</desc>
6629          </info>
6630          <value>false</value>
6631        </prop>
6632        <prop oor:name="VerticalCallOut" oor:type="xs:boolean" oor:nillable="false">
6633          <!-- UIHints: setup -->
6634          <info>
6635            <desc>Specifies whether vertical call out objects are available
6636            (true) or not (false).</desc>
6637          </info>
6638          <value>false</value>
6639        </prop>
6640      </group>
6641      <group oor:name="CTL">
6642        <info>
6643          <desc>Contains settings for the languages with complex text layout
6644          (Hebrew, Arabic, Thai,...).</desc>
6645        </info>
6646        <prop oor:name="CTLFont" oor:type="xs:boolean" oor:nillable="false">
6647          <!-- UIHints: setup -->
6648          <info>
6649            <desc>Specifies whether CTL font settings are available (true) or
6650            not (false).</desc>
6651          </info>
6652          <value>false</value>
6653        </prop>
6654        <prop oor:name="CTLSequenceChecking" oor:type="xs:boolean" oor:nillable="false">
6655          <!-- UIHints: setup -->
6656          <info>
6657            <desc>Specifies whether CTL strings are checked for the correct
6658            input sequence(true) or not (false).</desc>
6659          </info>
6660          <value>false</value>
6661        </prop>
6662        <prop oor:name="CTLSequenceCheckingRestricted" oor:type="xs:boolean" oor:nillable="false">
6663          <!-- UIHints: setup -->
6664          <info>
6665            <desc>Specifies whether CTL strings are checked restricted for the
6666            correct input sequence(true) or not (false). Is only effective when
6667            CTLSequenceChecking is true.</desc>
6668          </info>
6669          <value>false</value>
6670        </prop>
6671        <prop oor:name="CTLSequenceCheckingTypeAndReplace" oor:type="xs:boolean" oor:nillable="false">
6672          <!-- UIHints: setup -->
6673          <info>
6674            <desc>Specifies whether CTL input sequences are corrected while
6675            typing. Is only effective when CTLSequenceChecking is true.</desc>
6676          </info>
6677          <value>false</value>
6678        </prop>
6679        <prop oor:name="CTLCursorMovement" oor:type="xs:int" oor:nillable="false">
6680          <!-- UIHints: options-->
6681          <info>
6682            <desc>Specifies the type of text cursor movement (logical (0) or
6683            visual (1)) within mixed text (RTL and LTR).</desc>
6684          </info>
6685          <value>0</value>
6686        </prop>
6687        <prop oor:name="CTLTextNumerals" oor:type="xs:int" oor:nillable="false">
6688          <!-- UIHints: options-->
6689          <info>
6690            <desc>Specifies the type of numerals (Arabic (0), Hindi (1), system
6691            settings (2) or Context(3)) is used per default in all
6692            applications.</desc>
6693          </info>
6694          <value>0</value>
6695        </prop>
6696        <prop oor:name="UIMirroring" oor:type="xs:boolean">
6697          <info>
6698            <desc>Specifies whether the whole user interface (UI) will be
6699            mirrored. If true, the UI will be right-to-left. If false, the UI
6700            will be left-to-right. If nil (the default), the UI will be mirrored
6701            depending on the office locale.</desc>
6702          </info>
6703        </prop>
6704      </group>
6705    </group>
6706    <group oor:name="Startup">
6707      <info>
6708        <deprecated>Use cfg package Jobs instead of this.</deprecated>
6709        <desc>Uses cfg package Jobs instead of this component.</desc>
6710      </info>
6711      <set oor:name="Run" oor:node-type="JobDescription">
6712        <info>
6713          <deprecated>Use cfg package Jobs instead of this.</deprecated>
6714          <desc>Uses cfg package Jobs instead of this component.</desc>
6715        </info>
6716      </set>
6717      <set oor:name="RunOnce" oor:node-type="JobDescription">
6718        <info>
6719          <deprecated>Use cfg package Jobs instead of this.</deprecated>
6720          <desc>Uses cfg package Jobs instead of this component.</desc>
6721        </info>
6722      </set>
6723    </group>
6724    <group oor:name="SmartTags">
6725      <info>
6726        <desc>Contains settings for smart tags.</desc>
6727      </info>
6728      <group oor:name="Writer">
6729        <info>
6730          <desc>Contains Writer specific settings for smart tags.</desc>
6731        </info>
6732        <prop oor:name="RecognizeSmartTags" oor:type="xs:boolean" oor:nillable="false">
6733          <info>
6734            <desc>Specifies whether smart tag recognition is enabled.</desc>
6735          </info>
6736          <value>true</value>
6737        </prop>
6738        <prop oor:name="ExcludedSmartTagTypes" oor:type="oor:string-list">
6739          <info>
6740            <desc>A list of excluded smart tag types.</desc>
6741          </info>
6742        </prop>
6743      </group>
6744    </group>
6745    <group oor:name="StylesAndFormatting">
6746      <info>
6747        <desc>Contains settings for Styles.</desc>
6748      </info>
6749      <prop oor:name="Preview" oor:type="xs:boolean" oor:nillable="false">
6750        <info>
6751           <desc>Specifies if the styles preview is enabled.</desc>
6752        </info>
6753        <value>true</value>
6754      </prop>
6755    </group>
6756    <group oor:name="PackageKit">
6757      <info>
6758        <desc>Contains settings related to PackageKit (Unix only).</desc>
6759      </info>
6760      <prop oor:name="EnableFontInstallation" oor:type="xs:boolean" oor:nillable="false">
6761        <info>
6762           <desc>Specifies if missing font installation should be triggered.</desc>
6763        </info>
6764        <value>true</value>
6765      </prop>
6766      <prop oor:name="EnableLangpackInstallation" oor:type="xs:boolean" oor:nillable="false">
6767        <info>
6768           <desc>Specifies if missing langpack installation should be triggered.</desc>
6769        </info>
6770        <value>true</value>
6771      </prop>
6772      <prop oor:name="EnableBaseInstallation" oor:type="xs:boolean" oor:nillable="false">
6773        <info>
6774           <desc>Specifies if missing LibreOffice Base installation should be triggered.</desc>
6775        </info>
6776        <value>true</value>
6777      </prop>
6778    </group>
6779    <group oor:name="Classification">
6780      <info>
6781        <desc>TSCP Classification</desc>
6782      </info>
6783      <prop oor:name="Policy" oor:type="xs:short" oor:nillable="false">
6784        <info>
6785           <desc>The policy type used at classification</desc>
6786        </info>
6787        <value>3</value>
6788      </prop>
6789      <prop oor:name="IntellectualPropertySectionExpanded" oor:type="xs:boolean" oor:nillable="false">
6790        <info>
6791           <desc>Specifies if the intellectual property section in the advanced classification dialog should be expanded when the dialog is open.</desc>
6792        </info>
6793        <value>true</value>
6794      </prop>
6795      <prop oor:name="IntellectualPropertyTextInputIsFreeForm" oor:type="xs:boolean" oor:nillable="false">
6796        <info>
6797           <desc>Specifies if the intellectual property text in the advanced classification is free-form or limited to ';', '/' and ' ' (space) and delete key.</desc>
6798        </info>
6799        <value>true</value>
6800      </prop>
6801    </group>
6802    <group oor:name="PasteSpecial">
6803      <info>
6804        <desc>Stores properties related to the paste special feature in Calc.</desc>
6805      </info>
6806      <group oor:name="Paste">
6807        <info>
6808          <desc>Stores options under the "Paste" section.</desc>
6809        </info>
6810        <prop oor:name="All" oor:type="xs:boolean" oor:nillable="false">
6811          <info>
6812            <desc>Option to set all options.</desc>
6813          </info>
6814          <value>false</value>
6815        </prop>
6816        <prop oor:name="Numbers" oor:type="xs:boolean" oor:nillable="false">
6817          <info>
6818            <desc>Option for numbers.</desc>
6819          </info>
6820          <value>true</value>
6821        </prop>
6822        <prop oor:name="Text" oor:type="xs:boolean" oor:nillable="false">
6823          <info>
6824            <desc>Option for text.</desc>
6825          </info>
6826          <value>true</value>
6827        </prop>
6828        <prop oor:name="DateTime" oor:type="xs:boolean" oor:nillable="false">
6829          <info>
6830            <desc>Option for date and time.</desc>
6831          </info>
6832          <value>true</value>
6833        </prop>
6834        <prop oor:name="Formats" oor:type="xs:boolean" oor:nillable="false">
6835          <info>
6836            <desc>Option for formats.</desc>
6837          </info>
6838          <value>false</value>
6839        </prop>
6840        <prop oor:name="Comments" oor:type="xs:boolean" oor:nillable="false">
6841          <info>
6842            <desc>Option for comments.</desc>
6843          </info>
6844          <value>false</value>
6845        </prop>
6846        <prop oor:name="Objects" oor:type="xs:boolean" oor:nillable="false">
6847          <info>
6848            <desc>Option for objects.</desc>
6849          </info>
6850          <value>false</value>
6851        </prop>
6852        <prop oor:name="Formulas" oor:type="xs:boolean" oor:nillable="false">
6853          <info>
6854            <desc>Option for formulas.</desc>
6855          </info>
6856          <value>false</value>
6857        </prop>
6858      </group>
6859      <prop oor:name="ShiftCells" oor:type="xs:int" oor:nillable="false">
6860        <info>
6861          <desc>Stores the option to be used for the "Shift Cells" section.</desc>
6862        </info>
6863        <constraints>
6864          <enumeration oor:value="0">
6865            <info>
6866              <desc>Shift cells down (`InsCellCmd::INS_CELLSDOWN`).</desc>
6867            </info>
6868          </enumeration>
6869          <enumeration oor:value="1">
6870            <info>
6871              <desc>Shift cells right (`InsCellCmd::INS_CELLSRIGHT`).</desc>
6872            </info>
6873          </enumeration>
6874          <enumeration oor:value="4">
6875            <info>
6876              <desc>None (`InsCellCmd::INS_NONE`). This is the default value.</desc>
6877            </info>
6878          </enumeration>
6879        </constraints>
6880        <value>4</value>
6881      </prop>
6882      <group oor:name="Options">
6883        <info>
6884          <desc>Stores options under the "Options" section.</desc>
6885        </info>
6886        <prop oor:name="AsLink" oor:type="xs:boolean" oor:nillable="false">
6887          <info>
6888            <desc>Option for as link.</desc>
6889          </info>
6890          <value>false</value>
6891        </prop>
6892        <prop oor:name="Transpose" oor:type="xs:boolean" oor:nillable="false">
6893          <info>
6894            <desc>Option for transpose.</desc>
6895          </info>
6896          <value>false</value>
6897        </prop>
6898        <prop oor:name="SkipEmptyCells" oor:type="xs:boolean" oor:nillable="false">
6899          <info>
6900            <desc>Option for skipping empty cells.</desc>
6901          </info>
6902          <value>false</value>
6903        </prop>
6904      </group>
6905      <prop oor:name="Operations" oor:type="xs:int" oor:nillable="false">
6906        <info>
6907          <desc>Stores the option to be used for the "Operations" section.</desc>
6908        </info>
6909        <constraints>
6910          <enumeration oor:value="0">
6911            <info>
6912              <desc>No operation (`ScPasteFunc::NONE`). This is the default value.</desc>
6913            </info>
6914          </enumeration>
6915          <enumeration oor:value="1">
6916            <info>
6917              <desc>Add (`ScPasteFunc::ADD`).</desc>
6918            </info>
6919          </enumeration>
6920          <enumeration oor:value="2">
6921            <info>
6922              <desc>Subtract (`ScPasteFunc::SUB`).</desc>
6923            </info>
6924          </enumeration>
6925          <enumeration oor:value="3">
6926            <info>
6927              <desc>Multiply (`ScPasteFunc::MUL`).</desc>
6928            </info>
6929          </enumeration>
6930          <enumeration oor:value="4">
6931            <info>
6932              <desc>Divide (`ScPasteFunc::DIV`).</desc>
6933            </info>
6934          </enumeration>
6935        </constraints>
6936        <value>0</value>
6937      </prop>
6938    </group>
6939  </component>
6940</oor:component-schema>
6941